Discord · Schema

VoiceRegionResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id string
name string
custom boolean
deprecated boolean
optimal boolean
View JSON Schema on GitHub

JSON Schema

discord-voiceregionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceRegionResponse",
  "title": "VoiceRegionResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "custom": {
      "type": "boolean"
    },
    "deprecated": {
      "type": "boolean"
    },
    "optimal": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name",
    "custom",
    "deprecated",
    "optimal"
  ]
}