Auth0 · Schema

FormFieldCustomConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
schema object
code string
css string
params object
View JSON Schema on GitHub

JSON Schema

auth0-formfieldcustomconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldCustomConfig",
  "title": "FormFieldCustomConfig",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "schema",
    "code"
  ],
  "properties": {
    "schema": {
      "$ref": "#/components/schemas/FormFieldCustomConfigSchema"
    },
    "code": {
      "type": "string",
      "minLength": 1
    },
    "css": {
      "type": "string",
      "minLength": 1
    },
    "params": {
      "$ref": "#/components/schemas/FormFieldCustomConfigParams"
    }
  }
}