{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TenantSettingsErrorPage", "title": "TenantSettingsErrorPage", "type": [ "object", "null" ], "description": "Error page customization.", "additionalProperties": false, "properties": { "html": { "type": "string", "description": "Custom Error HTML (Liquid syntax is supported).", "default": "" }, "show_log_link": { "type": "boolean", "description": "Whether to show the link to log as part of the default error page (true, default) or not to show the link (false).", "default": false }, "url": { "type": "string", "description": "URL to redirect to when an error occurs instead of showing the default error page.", "default": "https://mycompany.org/error", "format": "absolute-uri-or-empty" } } }