{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateTeamRequest", "title": "CreateTeamRequest", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Name of the team." }, "description": { "type": "string", "description": "Description of the team." }, "members": { "type": "array", "description": "List of team members with their roles.", "items": { "$ref": "#/components/schemas/TeamMember" } } } }