Webex · Schema

BaseStationResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
mac string MAC Address added to the base station.
result object Object with base station POST Result.
View JSON Schema on GitHub

JSON Schema

webex-basestationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaseStationResponse",
  "title": "BaseStationResponse",
  "type": "object",
  "required": [
    "mac",
    "result"
  ],
  "properties": {
    "mac": {
      "type": "string",
      "example": "6DDE9EBDE1C9",
      "description": "MAC Address added to the base station."
    },
    "result": {
      "$ref": "#/components/schemas/BaseStationPostResult",
      "description": "Object with base station POST Result."
    }
  }
}