Auth0 · Schema

FormFieldDropdownConfigOption

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
value string
label string
View JSON Schema on GitHub

JSON Schema

auth0-formfielddropdownconfigoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldDropdownConfigOption",
  "title": "FormFieldDropdownConfigOption",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "value",
    "label"
  ],
  "properties": {
    "value": {
      "type": "string",
      "minLength": 1
    },
    "label": {
      "type": "string",
      "minLength": 1
    }
  }
}