Webex · Schema

PostValidateExtensionResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
status string OK , ERRORS * `OK` - Validated succesfully. * `ERRORS` - Validated with errors.
extensionStatus array
View JSON Schema on GitHub

JSON Schema

webex-postvalidateextensionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostValidateExtensionResponse",
  "title": "PostValidateExtensionResponse",
  "type": "object",
  "required": [
    "status",
    "extensionStatus"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK",
        "ERRORS"
      ],
      "description": "OK , ERRORS\n * `OK` - Validated succesfully.\n * `ERRORS` - Validated with errors.\n"
    },
    "extensionStatus": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/extentionStatusObject"
      }
    }
  }
}