{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateRoomRequest", "title": "CreateRoomRequest", "type": "object", "required": [ "title" ], "properties": { "title": { "type": "string", "description": "A user-friendly name for the room." }, "teamId": { "type": "string", "description": "The team ID to associate the room with." }, "classificationId": { "type": "string", "description": "The classification ID for the room." }, "isLocked": { "type": "boolean", "description": "Whether to enable moderation." }, "isPublic": { "type": "boolean", "description": "Whether the room is discoverable." }, "description": { "type": "string", "description": "The description of the room." }, "isAnnouncementOnly": { "type": "boolean", "description": "Whether only moderators can post." } } }