Deepgram · Schema

Paragraph

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
sentences array Sentences within this paragraph.
start number Start time of the paragraph in seconds.
end number End time of the paragraph in seconds.
num_words integer Number of words in this paragraph.
speaker integer Speaker identifier for this paragraph.
View JSON Schema on GitHub

JSON Schema

deepgram-paragraph-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Paragraph",
  "title": "Paragraph",
  "type": "object",
  "properties": {
    "sentences": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Sentence"
      },
      "description": "Sentences within this paragraph."
    },
    "start": {
      "type": "number",
      "format": "float",
      "description": "Start time of the paragraph in seconds."
    },
    "end": {
      "type": "number",
      "format": "float",
      "description": "End time of the paragraph in seconds."
    },
    "num_words": {
      "type": "integer",
      "description": "Number of words in this paragraph."
    },
    "speaker": {
      "type": "integer",
      "description": "Speaker identifier for this paragraph."
    }
  }
}