Webex · Schema

PasscodeLength

Length of the passcode.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
min integer The minimum value is 2. The maximum value is 15.
max integer The minimum value is 3. The maximum value is 30.
View JSON Schema on GitHub

JSON Schema

webex-passcodelength-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PasscodeLength",
  "title": "PasscodeLength",
  "type": "object",
  "required": [
    "min",
    "max"
  ],
  "properties": {
    "min": {
      "type": "integer",
      "minimum": 2,
      "maximum": 15,
      "example": 6,
      "description": "The minimum value is 2. The maximum value is 15."
    },
    "max": {
      "type": "integer",
      "minimum": 3,
      "maximum": 30,
      "example": 15,
      "description": "The minimum value is 3. The maximum value is 30."
    }
  },
  "description": "Length of the passcode."
}