{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Word", "title": "Word", "type": "object", "properties": { "word": { "type": "string", "description": "The transcribed word" }, "start": { "type": "number", "description": "Start time in seconds" }, "end": { "type": "number", "description": "End time in seconds" }, "speaker": { "type": [ "integer", "null" ], "description": "Speaker ID if diarization is enabled" } } }