{ "$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" } } }