Auth0 · Schema

FormFieldNumberConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
default_value number
placeholder string
min_value number
max_value number
View JSON Schema on GitHub

JSON Schema

auth0-formfieldnumberconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldNumberConfig",
  "title": "FormFieldNumberConfig",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "default_value": {
      "type": "number"
    },
    "placeholder": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "min_value": {
      "type": "number"
    },
    "max_value": {
      "type": "number"
    }
  }
}