Webex · Schema

AuthenticationConfigPatchObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
schemas array Input JSON schemas. It should contain the following schema: urn:cisco:codev:identity:idbroker:authnconfig:schemas:1.0
RememberMyLoginId boolean Login Id set to true if it should be remembered.
RememberMyLoginIdDuration number Specifies the number of days the user's login ID is remembered. Must be between 1 and 120 (inclusive).
View JSON Schema on GitHub

JSON Schema

webex-authenticationconfigpatchobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationConfigPatchObject",
  "title": "AuthenticationConfigPatchObject",
  "type": "object",
  "required": [
    "schemas"
  ],
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "urn:cisco:codev:identity:idbroker:authnconfig:schemas:1.0"
      },
      "description": "Input JSON schemas. It should contain the following schema: \n urn:cisco:codev:identity:idbroker:authnconfig:schemas:1.0"
    },
    "RememberMyLoginId": {
      "type": "boolean",
      "example": true,
      "description": "Login Id set to true if it should be remembered."
    },
    "RememberMyLoginIdDuration": {
      "type": "number",
      "example": 30,
      "description": "Specifies the number of days the user's login ID is remembered. Must be between 1 and 120 (inclusive)."
    }
  }
}