Deepgram · Schema

ParagraphGroup

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
transcript string Full transcript organized into paragraphs.
paragraphs array Individual paragraph objects.
View JSON Schema on GitHub

JSON Schema

deepgram-paragraphgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParagraphGroup",
  "title": "ParagraphGroup",
  "type": "object",
  "properties": {
    "transcript": {
      "type": "string",
      "description": "Full transcript organized into paragraphs."
    },
    "paragraphs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Paragraph"
      },
      "description": "Individual paragraph objects."
    }
  }
}