{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AculConfigs", "title": "AculConfigs", "type": "array", "description": "Array of screen configurations to update", "minItems": 1, "items": { "type": "object", "additionalProperties": false, "required": [ "prompt", "screen" ], "properties": { "prompt": { "$ref": "#/components/schemas/PromptGroupNameEnum" }, "screen": { "$ref": "#/components/schemas/ScreenGroupNameEnum" }, "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" } } } }