Deepgram · Schema

SentimentAverage

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
sentiment string Overall average sentiment.
sentiment_score number Average sentiment score.
View JSON Schema on GitHub

JSON Schema

deepgram-sentimentaverage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SentimentAverage",
  "title": "SentimentAverage",
  "type": "object",
  "properties": {
    "sentiment": {
      "type": "string",
      "enum": [
        "positive",
        "negative",
        "neutral"
      ],
      "description": "Overall average sentiment."
    },
    "sentiment_score": {
      "type": "number",
      "format": "float",
      "description": "Average sentiment score."
    }
  }
}