{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MultipleInteractionsRecording", "title": "MultipleInteractionsRecording", "required": [ "recording", "transcription" ], "type": "object", "properties": { "taskId": { "type": "string", "description": "The ID of the task.", "format": "uuid", "example": "e890a591-63f0-4984-a8f2-00e631368fb4" }, "recording": { "type": "array", "items": { "$ref": "#/components/schemas/RecordingMulti" } }, "transcription": { "type": "array", "items": { "$ref": "#/components/schemas/TranscriptMulti" } } } }