Deepgram · Schema

InvitationCreate

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
email string Email address to send the invitation to.
scope string Scope to assign to the invited member.
View JSON Schema on GitHub

JSON Schema

deepgram-invitationcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvitationCreate",
  "title": "InvitationCreate",
  "type": "object",
  "required": [
    "email",
    "scope"
  ],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address to send the invitation to."
    },
    "scope": {
      "type": "string",
      "description": "Scope to assign to the invited member."
    }
  }
}