Webex · Schema

VlanObjectDevice

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Denotes whether the VLAN object of an ATA is enabled.
value number The value of the VLAN Object of an ATA object.
View JSON Schema on GitHub

JSON Schema

webex-vlanobjectdevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VlanObjectDevice",
  "title": "VlanObjectDevice",
  "type": "object",
  "required": [
    "enabled",
    "value"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Denotes whether the VLAN object of an ATA is enabled."
    },
    "value": {
      "type": "number",
      "example": 1,
      "description": "The value of the VLAN Object of an ATA object."
    }
  }
}