Webex · Schema

Regions

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code string Two character region code.
name string Name of the region.
defaultEnabled string Enabled by default.
View JSON Schema on GitHub

JSON Schema

webex-regions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Regions",
  "title": "Regions",
  "type": "object",
  "required": [
    "code",
    "name",
    "defaultEnabled"
  ],
  "properties": {
    "code": {
      "type": "string",
      "example": "US",
      "description": "Two character region code."
    },
    "name": {
      "type": "string",
      "example": "United States",
      "description": "Name of the region."
    },
    "defaultEnabled": {
      "type": "string",
      "example": "false",
      "description": "Enabled by default."
    }
  }
}