{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-voice-transcript-schema.json", "title": "VoiceTranscript", "description": "VoiceTranscript schema from Aider CLI", "type": "object", "properties": { "text": { "type": "string", "description": "Transcribed text queued as the next prompt.", "example": "refactor the cache layer to use lru eviction" }, "duration_ms": { "type": "integer", "description": "Length of the recorded clip.", "example": 4200 } } }