Auth0 · Schema

UpdateAculRequestContent

Render settings for the given screen

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
rendering_mode object Rendering mode
context_configuration object
default_head_tags_disabled booleannull Override Universal Login default head tags
use_page_template booleannull Use page template with ACUL
head_tags arraynull An array of head tags
filters object
View JSON Schema on GitHub

JSON Schema

auth0-updateaculrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAculRequestContent",
  "title": "UpdateAculRequestContent",
  "type": "object",
  "description": "Render settings for the given screen",
  "additionalProperties": false,
  "properties": {
    "rendering_mode": {
      "$ref": "#/components/schemas/AculRenderingModeEnum",
      "description": "Rendering mode"
    },
    "context_configuration": {
      "$ref": "#/components/schemas/AculContextConfiguration"
    },
    "default_head_tags_disabled": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Override Universal Login default head tags",
      "default": false
    },
    "use_page_template": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Use page template with ACUL",
      "default": false
    },
    "head_tags": {
      "type": [
        "array",
        "null"
      ],
      "description": "An array of head tags",
      "items": {
        "$ref": "#/components/schemas/AculHeadTag"
      }
    },
    "filters": {
      "$ref": "#/components/schemas/AculFilters"
    }
  }
}