Deepgram · Schema

TextAnalysisRequest

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
text string Text content to analyze.
url string URL of a text document to analyze.
View JSON Schema on GitHub

JSON Schema

deepgram-textanalysisrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextAnalysisRequest",
  "title": "TextAnalysisRequest",
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "description": "Text content to analyze."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of a text document to analyze."
    }
  }
}