Webex · Schema

TrunkTypeWithDeviceType

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
trunkType object Trunk Type associated with the trunk.
deviceTypes array Device types for trunk configuration.
View JSON Schema on GitHub

JSON Schema

webex-trunktypewithdevicetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrunkTypeWithDeviceType",
  "title": "TrunkTypeWithDeviceType",
  "type": "object",
  "required": [
    "trunkType",
    "deviceTypes"
  ],
  "properties": {
    "trunkType": {
      "$ref": "#/components/schemas/TrunkType",
      "description": "Trunk Type associated with the trunk."
    },
    "deviceTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeviceType"
      },
      "description": "Device types for trunk configuration."
    }
  }
}