Webex · Schema

MppVlanObjectDevice

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the VLAN object of an MPP is enabled.
value number Indicates the value of a VLAN object for an MPP object.
pcPort number Indicates the PC port value of a VLAN object for an MPP object.
View JSON Schema on GitHub

JSON Schema

webex-mppvlanobjectdevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MppVlanObjectDevice",
  "title": "MppVlanObjectDevice",
  "type": "object",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Indicates whether the VLAN object of an MPP is enabled."
    },
    "value": {
      "type": "number",
      "example": 1,
      "description": "Indicates the value of a VLAN object for an MPP object."
    },
    "pcPort": {
      "type": "number",
      "example": 1,
      "description": "Indicates the PC port value of a VLAN object for an MPP object."
    }
  }
}