Auth0 · Schema

FormBlockRichText

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
category object
type object
config object
View JSON Schema on GitHub

JSON Schema

auth0-formblockrichtext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormBlockRichText",
  "title": "FormBlockRichText",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "category",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "forms-custom-identifier"
    },
    "category": {
      "$ref": "#/components/schemas/FormComponentCategoryBlockConst"
    },
    "type": {
      "$ref": "#/components/schemas/FormBlockTypeRichTextConst"
    },
    "config": {
      "$ref": "#/components/schemas/FormBlockRichTextConfig"
    }
  }
}