Auth0 · Schema

FormFieldBoolean

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
category object
type object
config object
label string
hint string
required boolean
sensitive boolean
View JSON Schema on GitHub

JSON Schema

auth0-formfieldboolean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormFieldBoolean",
  "title": "FormFieldBoolean",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "category",
    "type",
    "config"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "forms-custom-identifier"
    },
    "category": {
      "$ref": "#/components/schemas/FormComponentCategoryFieldConst"
    },
    "type": {
      "$ref": "#/components/schemas/FormFieldTypeBooleanConst"
    },
    "config": {
      "$ref": "#/components/schemas/FormFieldBooleanConfig"
    },
    "label": {
      "type": "string",
      "minLength": 1
    },
    "hint": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "required": {
      "type": "boolean"
    },
    "sensitive": {
      "type": "boolean"
    }
  }
}