Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| string | ||
| ipAllowList | array | |
| twoFactorAuthEnabled | boolean | Whether two-factor authentication is enabled for the owner. Only present if `type` is `user`. |
| type | string |
JSON Schema
{
"$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"
]
}
}
}