{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/owner", "title": "owner", "type": "object", "required": [ "id", "name", "email", "type" ], "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "email": { "type": "string" }, "ipAllowList": { "type": "array", "items": { "$ref": "#/components/schemas/cidrBlockAndDescription" } }, "twoFactorAuthEnabled": { "type": "boolean", "description": "Whether two-factor authentication is enabled for the owner. Only present if `type` is `user`." }, "type": { "type": "string", "enum": [ "user", "team" ] } } }