{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TranscriptSegment", "title": "TranscriptSegment", "type": "object", "properties": { "start": { "type": "number", "description": "Start time of the segment in seconds." }, "end": { "type": "number", "description": "End time of the segment in seconds." }, "text": { "type": "string", "description": "The transcribed or translated text for this segment." }, "speaker": { "type": "string", "description": "The speaker identifier for this segment." } } }