{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TeamInput",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the Team."
},
"description": {
"type": "string",
"description": "The description of the Team."
},
"workspace_token": {
"type": "string",
"description": "The token of the Workspace for the Team."
},
"user_tokens": {
"type": "array",
"description": "Tokens of users to add to the Team."
}
}
}