{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CalendarRecordingTranscript", "title": "CalendarRecordingTranscript", "properties": { "attendee": { "$ref": "#/components/schemas/property_CalendarRecordingTranscript_attendee" }, "end_at": { "format": "date-time", "type": "string" }, "language": { "type": "string" }, "start_at": { "format": "date-time", "type": "string" }, "text": { "type": "string" } }, "required": [ "text" ], "type": "object" }