Deepgram · Schema

Error

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
err_code string Error code identifying the type of error.
err_msg string Human-readable error message.
request_id string Unique identifier for the request that produced the error.
View JSON Schema on GitHub

JSON Schema

deepgram-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "properties": {
    "err_code": {
      "type": "string",
      "description": "Error code identifying the type of error."
    },
    "err_msg": {
      "type": "string",
      "description": "Human-readable error message."
    },
    "request_id": {
      "type": "string",
      "description": "Unique identifier for the request that produced the error."
    }
  }
}