Auth0 · Schema

FormFieldDropdownConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
multiple boolean
options array
default_value object
placeholder string
View JSON Schema on GitHub

JSON Schema

auth0-formfielddropdownconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldDropdownConfig",
  "title": "FormFieldDropdownConfig",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "multiple": {
      "type": "boolean"
    },
    "options": {
      "type": "array",
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/FormFieldDropdownConfigOption"
      }
    },
    "default_value": {},
    "placeholder": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    }
  }
}