Auth0 · Schema

FormFieldChoiceConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-formfieldchoiceconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldChoiceConfig",
  "title": "FormFieldChoiceConfig",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "multiple": {
      "type": "boolean"
    },
    "options": {
      "type": "array",
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/FormFieldChoiceConfigOption"
      }
    },
    "allow_other": {
      "$ref": "#/components/schemas/FormFieldChoiceConfigAllowOther"
    },
    "default_value": {}
  }
}