Deepgram · Schema

SentimentResults

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
segments array Sentiment analysis results for content segments.
average object
View JSON Schema on GitHub

JSON Schema

deepgram-sentimentresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SentimentResults",
  "title": "SentimentResults",
  "type": "object",
  "properties": {
    "segments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SentimentSegment"
      },
      "description": "Sentiment analysis results for content segments."
    },
    "average": {
      "$ref": "#/components/schemas/SentimentAverage"
    }
  }
}