Properties
| Name | Type | Description |
|---|---|---|
| name | string | _t__Team::NAME |
| accounts | array | |
| invited_accounts | array | _t__Team::INVITED_ACCOUNTS |
| invited_emails | array | _t__Team::INVITED_EMAILS |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TeamResponse",
"title": "TeamResponse",
"description": "_t__TeamResponse::DESCRIPTION",
"properties": {
"name": {
"description": "_t__Team::NAME",
"type": "string"
},
"accounts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AccountResponse"
}
},
"invited_accounts": {
"description": "_t__Team::INVITED_ACCOUNTS",
"type": "array",
"items": {
"$ref": "#/components/schemas/AccountResponse"
}
},
"invited_emails": {
"description": "_t__Team::INVITED_EMAILS",
"type": "array",
"items": {
"type": "string"
}
}
},
"type": "object",
"x-internal": true
}