Auth0 · Schema

FormFieldTextConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
multiline boolean
default_value string
placeholder string
min_length integer
max_length integer
View JSON Schema on GitHub

JSON Schema

auth0-formfieldtextconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldTextConfig",
  "title": "FormFieldTextConfig",
  "type": "object",
  "allOf": [
    {
      "type": "object",
      "additionalProperties": true
    },
    {
      "type": "object",
      "additionalProperties": true
    },
    {
      "type": "object",
      "additionalProperties": true
    }
  ],
  "additionalProperties": false,
  "properties": {
    "multiline": {
      "type": "boolean"
    },
    "default_value": {
      "type": "string",
      "minLength": 1
    },
    "placeholder": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "min_length": {
      "type": "integer",
      "minimum": 1
    },
    "max_length": {
      "type": "integer",
      "minimum": 1
    }
  }
}