{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TranscriptSegment", "title": "TranscriptSegment", "type": "object", "description": "Serializer for individual transcript segments from AssemblyAI", "properties": { "timestamp": { "type": "number", "format": "double", "nullable": true, "description": "Milliseconds from recording start" }, "speaker": { "type": "string", "nullable": true }, "text": { "type": "string" }, "confidence": { "type": "number", "format": "double", "nullable": true, "description": "Transcription confidence score" }, "is_final": { "type": "boolean", "nullable": true, "description": "Whether this is the final version" } }, "required": [ "text" ] }