Webex · Schema

StatusOfExtensionsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
status string Status of the validated array of extensions. * `OK` - Indicates that all extensions were validated. * `ERRORS` - Indicates that not all extensions were validated.
extensionStatus array Array of extensions statuses.
View JSON Schema on GitHub

JSON Schema

webex-statusofextensionsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusOfExtensionsObject",
  "title": "StatusOfExtensionsObject",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK",
        "ERRORS"
      ],
      "description": "Status of the validated array of extensions.\n * `OK` - Indicates that all extensions were validated.\n * `ERRORS` - Indicates that not all extensions were validated.\n"
    },
    "extensionStatus": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExtensionStatusObject"
      },
      "description": "Array of extensions statuses."
    }
  }
}