Auth0 · Schema

FormHiddenField

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
key string
value string
View JSON Schema on GitHub

JSON Schema

auth0-formhiddenfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormHiddenField",
  "title": "FormHiddenField",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "key"
  ],
  "properties": {
    "key": {
      "type": "string",
      "format": "forms-custom-identifier"
    },
    "value": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    }
  }
}