{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetScheduleEventObject", "title": "GetScheduleEventObject", "type": "object", "required": [ "id", "name", "startDate", "endDate" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1NDSEVEVUxFX0VWRU5UL1RXOXVaR0Y1VTJOb1pXUjFiR1U", "description": "A unique identifier for the schedule event." }, "name": { "type": "string", "example": "MondaySchedule", "description": "Name for the event." }, "startDate": { "type": "string", "example": "2021-11-01", "description": "Start Date of Event." }, "endDate": { "type": "string", "example": "2021-11-30", "description": "End Date of Event." }, "startTime": { "type": "string", "example": "12:20", "description": "Start time of event." }, "endTime": { "type": "string", "example": "14:20", "description": "End time of event." }, "allDayEnabled": { "type": "boolean", "description": "An indication of whether given event is an all-day event or not." }, "recurrence": { "$ref": "#/components/schemas/RecurrenceObject", "description": "Recurrence definition." } } }