Webex · Schema

PostLocationAnnouncementLanguageObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
agentEnabled boolean Set to `true` to change announcement language for existing people and workspaces.
serviceEnabled boolean Set to `true` to change announcement language for existing feature configurations.
announcementLanguageCode string Language code.
View JSON Schema on GitHub

JSON Schema

webex-postlocationannouncementlanguageobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostLocationAnnouncementLanguageObject",
  "title": "PostLocationAnnouncementLanguageObject",
  "type": "object",
  "required": [
    "announcementLanguageCode"
  ],
  "properties": {
    "agentEnabled": {
      "type": "boolean",
      "description": "Set to `true` to change announcement language for existing people and workspaces."
    },
    "serviceEnabled": {
      "type": "boolean",
      "description": "Set to `true` to change announcement language for existing feature configurations."
    },
    "announcementLanguageCode": {
      "type": "string",
      "example": "en_us",
      "description": "Language code."
    }
  }
}