{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PreMeetingBreakoutSessionWithoutIdObject", "title": "PreMeetingBreakoutSessionWithoutIdObject", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "example": "Breakout Session Name", "description": "Name for breakout session." }, "invitees": { "type": "array", "items": { "type": "string" }, "description": "Invitees for breakout session. Please note that one invitee cannot be assigned to more than one breakout session." } } }