Webex · Schema

MACAddressResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
status string Status of MAC address.
macStatus array Contains an array of all the MAC address provided and their statuses.
View JSON Schema on GitHub

JSON Schema

webex-macaddressresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MACAddressResponse",
  "title": "MACAddressResponse",
  "type": "object",
  "required": [
    "status",
    "macStatus"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OK",
        "ERRORS"
      ],
      "description": "Status of MAC address."
    },
    "macStatus": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MacStatusObject"
      },
      "description": "Contains an array of all the MAC address provided and their statuses."
    }
  }
}