Auth0 · Schema

FormFieldTelConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
default_value string
placeholder string
min_length integer
max_length integer
country_picker boolean
strings object
View JSON Schema on GitHub

JSON Schema

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