{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListAculsResponseContentItem", "title": "ListAculsResponseContentItem", "type": "object", "additionalProperties": true, "properties": { "tenant": { "type": "string", "description": "Tenant ID" }, "prompt": { "type": "string", "description": "Name of the prompt" }, "screen": { "type": "string", "description": "Name of the screen" }, "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" } } }