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