Deepgram · Schema

Topic

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
topic string Detected topic label.
confidence_score number Confidence score for the topic detection.
View JSON Schema on GitHub

JSON Schema

deepgram-topic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Topic",
  "title": "Topic",
  "type": "object",
  "properties": {
    "topic": {
      "type": "string",
      "description": "Detected topic label."
    },
    "confidence_score": {
      "type": "number",
      "format": "float",
      "description": "Confidence score for the topic detection."
    }
  }
}