Deepgram · Schema

TextAnalysisResponse

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
metadata object
results object
View JSON Schema on GitHub

JSON Schema

deepgram-textanalysisresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextAnalysisResponse",
  "title": "TextAnalysisResponse",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "request_id": {
          "type": "string",
          "description": "Unique identifier for the API request."
        },
        "created": {
          "type": "string",
          "format": "date-time",
          "description": "Timestamp when the request was created."
        }
      }
    },
    "results": {
      "type": "object",
      "properties": {
        "summary": {
          "$ref": "#/components/schemas/Summary"
        },
        "sentiments": {
          "$ref": "#/components/schemas/SentimentResults"
        },
        "topics": {
          "$ref": "#/components/schemas/TopicResults"
        },
        "intents": {
          "$ref": "#/components/schemas/IntentResults"
        }
      }
    }
  }
}