From dea93d0bbee6ea2696ef54275a9adde3b77112c4 Mon Sep 17 00:00:00 2001 From: Constantin Pape Date: Fri, 11 Apr 2025 15:18:04 +0200 Subject: [PATCH 1/2] Add uiSelectionGroups --- schema/view.schema.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/schema/view.schema.json b/schema/view.schema.json index 49158de..9423344 100644 --- a/schema/view.schema.json +++ b/schema/view.schema.json @@ -864,6 +864,16 @@ "properties": { "uiSelectionGroup": { "description": "Name of the UI from which this view can be selected.", + "type": "array", + "items": { + "$ref": "#/definitions/name", + "minItems": 1, + }, + "$ref": "#/definitions/name" + }, + + "uiSelectionGroups": { + "description": "Name of multiple UI elements from which this view can be selected. Values specified here will be added in addition to the value in 'uiSelectionGroup.'", "$ref": "#/definitions/name" }, From 17536ac7f31858d401cdebe7b8fd48916eddff46 Mon Sep 17 00:00:00 2001 From: Constantin Pape Date: Fri, 11 Apr 2025 15:24:14 +0200 Subject: [PATCH 2/2] Fix typo --- schema/view.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/view.schema.json b/schema/view.schema.json index 9423344..3477f16 100644 --- a/schema/view.schema.json +++ b/schema/view.schema.json @@ -867,7 +867,7 @@ "type": "array", "items": { "$ref": "#/definitions/name", - "minItems": 1, + "minItems": 1 }, "$ref": "#/definitions/name" },