create_team
Create a new team with optional members and tags to manage team retrospectives effectively. Input a team name, add members with email and optional admin status, and assign tags for organization.
Instructions
Create a new team with optional members and tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
members | No | { email: string, name?: string, teamAdmin?: boolean }[] | |
name | Yes | string | |
tags | No | string[] |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"members": {
"description": "{ email: string, name?: string, teamAdmin?: boolean }[]",
"items": {
"additionalProperties": false,
"properties": {
"email": {
"format": "email",
"type": "string"
},
"name": {
"type": [
"string",
"null"
]
},
"teamAdmin": {
"default": false,
"type": "boolean"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
},
"name": {
"description": "string",
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"tags": {
"description": "string[]",
"items": {
"type": "string"
},
"maxItems": 16,
"minItems": 0,
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}