Auth0 · Schema
UpdateAculResponseContent
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateAculResponseContent",
"title": "UpdateAculResponseContent",
"type": "object",
"additionalProperties": true,
"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"
}
}
}