Deepgram · Schema

Intent

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

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

JSON Schema

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