Webex · Schema

DeviceDynamicSettingsValidationSchemaGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
tags array Array of device settings tags with their validation rules.
View JSON Schema on GitHub

JSON Schema

webex-devicedynamicsettingsvalidationschemaget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceDynamicSettingsValidationSchemaGet",
  "title": "DeviceDynamicSettingsValidationSchemaGet",
  "type": "object",
  "example": {
    "tags": [
      {
        "familyOrModelDisplayName": "Poly",
        "tag": "%G711U_ORDER%",
        "friendlyName": "voice.codecPref.G711Mu",
        "tooltip": "Tag tooltip.",
        "level": [
          "location",
          "device"
        ],
        "validationRule": {
          "type": "int",
          "min": 0,
          "max": 10,
          "increment": 1
        }
      }
    ]
  },
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeviceTag"
      },
      "description": "Array of device settings tags with their validation rules."
    }
  }
}