From 7dd96ea484d5e286c40d6e2fde91ba0ba3ac73f6 Mon Sep 17 00:00:00 2001 From: "Michael Faber (HE/HIM)" Date: Fri, 5 Apr 2024 13:14:48 -0500 Subject: [PATCH] re-add visual name property --- .../report/definition/visualContainer/1.0.0/schema.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fabric/item/report/definition/visualContainer/1.0.0/schema.json b/fabric/item/report/definition/visualContainer/1.0.0/schema.json index 8653fa7..d8208cb 100644 --- a/fabric/item/report/definition/visualContainer/1.0.0/schema.json +++ b/fabric/item/report/definition/visualContainer/1.0.0/schema.json @@ -3,6 +3,11 @@ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { + "name": { + "description": "A unique identifier for the visual across the whole page.", + "maxLength": 50, + "type": "string" + }, "position": { "$ref": "#/definitions/VisualContainerPosition", "description": "Defines where the visual is position on the page and how big it should be, along\nwith z-index (stacking) for that visual.\nAlso defines the order in which visuals are navigated when using just keyboard (tabOrder)." @@ -109,6 +114,7 @@ "additionalProperties": false, "required": [ "$schema", + "name", "position" ], "definitions": {