Auth0 · Schema

FormWidgetAuth0VerifiableCredentialsConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
url string
size number
alternate_text string
access_token string
verification_id string
max_wait number
View JSON Schema on GitHub

JSON Schema

auth0-formwidgetauth0verifiablecredentialsconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormWidgetAuth0VerifiableCredentialsConfig",
  "title": "FormWidgetAuth0VerifiableCredentialsConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "url",
    "alternate_text",
    "access_token",
    "verification_id"
  ],
  "properties": {
    "url": {
      "type": "string",
      "maxLength": 2000
    },
    "size": {
      "type": "number",
      "minimum": 1,
      "maximum": 500
    },
    "alternate_text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "access_token": {
      "type": "string",
      "minLength": 1,
      "maxLength": 5000
    },
    "verification_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "max_wait": {
      "type": "number",
      "minimum": 60,
      "maximum": 600
    }
  }
}