{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateSpaceRequest", "title": "UpdateSpaceRequest", "type": "object", "description": "Request body for updating an existing Space.", "properties": { "name": { "type": "string", "description": "The updated name of the Space." }, "color": { "type": "string", "description": "The updated hex color code." }, "private": { "type": "boolean", "description": "Whether the Space should be private." }, "admin_can_manage": { "type": "boolean", "description": "Whether admins can manage the Space." }, "multiple_assignees": { "type": "boolean", "description": "Whether to enable multiple assignees." }, "features": { "type": "object", "description": "Updated features configuration." } } }