Deepgram · Schema

Sentence

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
text string Sentence text.
start number Start time of the sentence in seconds.
end number End time of the sentence in seconds.
View JSON Schema on GitHub

JSON Schema

deepgram-sentence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Sentence",
  "title": "Sentence",
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "description": "Sentence text."
    },
    "start": {
      "type": "number",
      "format": "float",
      "description": "Start time of the sentence in seconds."
    },
    "end": {
      "type": "number",
      "format": "float",
      "description": "End time of the sentence in seconds."
    }
  }
}