Deepgram · Schema

Project

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
project_id string Unique identifier for the project.
name string Name of the project.
company string Company name associated with the project.
View JSON Schema on GitHub

JSON Schema

deepgram-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "project_id": {
      "type": "string",
      "description": "Unique identifier for the project."
    },
    "name": {
      "type": "string",
      "description": "Name of the project."
    },
    "company": {
      "type": "string",
      "description": "Company name associated with the project."
    }
  }
}