Details about a team to create.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalCreateTeamRequest", "title": "PortalCreateTeamRequest", "x-speakeasy-entity": "PortalTeam", "description": "Details about a team to create.", "type": "object", "properties": { "name": { "type": "string", "example": "IDM - Developers", "pattern": "^[\\w \\W]+$", "writeOnly": true }, "description": { "type": "string", "example": "The Identity Management (IDM) team.", "maxLength": 250, "writeOnly": true }, "can_own_applications": { "description": "Whether the team is allowed to own applications", "type": "boolean", "example": true, "default": false } }, "example": { "name": "IDM - Developers", "description": "The Identity Management (IDM) team.", "can_own_applications": false }, "required": [ "name" ] }