Webex · Schema

BaseStationsResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the base station.
mac string Mac address of the DECT base station device.
numberOfLinesRegistered number Number of handset member lines registered with the base station.
View JSON Schema on GitHub

JSON Schema

webex-basestationsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaseStationsResponse",
  "title": "BaseStationsResponse",
  "type": "object",
  "required": [
    "id",
    "mac",
    "numberOfLinesRegistered"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1NDSU1fR1JPVVAvZjA2ZWRiOGMtMjMxNC00ZTcxLWIzNzgtZTdiMmQwNjk3OTliOjk2YWJjMmFhLTNkY2MtMTFlNS1hMTUyLWZlMzQ4MTljZGM5YQ",
      "description": "Unique identifier of the base station."
    },
    "mac": {
      "type": "string",
      "example": "ABBD45856978",
      "description": "Mac address of the DECT base station device."
    },
    "numberOfLinesRegistered": {
      "type": "number",
      "example": 2,
      "description": "Number of handset member lines registered with the base station."
    }
  }
}