Webex · Schema

DECTNetworkItem

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the DECT network.
name string Name of the DECT network. This should be unique across the location.
numberOfHandsetsAssigned number Number of handsets assigned to the DECT network.
View JSON Schema on GitHub

JSON Schema

webex-dectnetworkitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DECTNetworkItem",
  "title": "DECTNetworkItem",
  "type": "object",
  "required": [
    "id",
    "name",
    "numberOfHandsetsAssigned"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0RFQ1RfREVWX05FVC81NmRiMjRkMy03YTdhLTQwYTItOWFjOS1iMjMzMjc3OTIxNzf",
      "description": "Unique identifier for the DECT network."
    },
    "name": {
      "type": "string",
      "example": "Demo-DectNetwork",
      "description": "Name of the DECT network. This should be unique across the location."
    },
    "numberOfHandsetsAssigned": {
      "type": "number",
      "example": 5,
      "description": "Number of handsets assigned to the DECT network."
    }
  }
}