{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalUpdateTeamRequest", "title": "PortalUpdateTeamRequest", "description": "Properties to update on a team.", "type": "object", "properties": { "name": { "type": "string", "example": "IDM - Developers", "pattern": "^[\\w \\W]+$", "writeOnly": true }, "description": { "type": "string", "example": "The Identity Management (IDM) API team.", "maxLength": 250, "writeOnly": true }, "can_own_applications": { "description": "Whether the team is allowed to own applications.", "type": "boolean", "example": true } }, "example": { "name": "IDM - Developers", "description": "The Identity Management (IDM) API team.", "can_own_applications": false } }