Deepgram · Schema

Member

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
member_id string Unique identifier for the member.
email string Email address of the member.
first_name string First name of the member.
last_name string Last name of the member.
scopes array Scopes assigned to this member.
View JSON Schema on GitHub

JSON Schema

deepgram-member-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Member",
  "title": "Member",
  "type": "object",
  "properties": {
    "member_id": {
      "type": "string",
      "description": "Unique identifier for the member."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the member."
    },
    "first_name": {
      "type": "string",
      "description": "First name of the member."
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the member."
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Scopes assigned to this member."
    }
  }
}