From 9dd8a9988fbcc402110718f7dacd48a865f257a4 Mon Sep 17 00:00:00 2001 From: IshavSohal Date: Wed, 4 Dec 2024 12:57:28 -0500 Subject: [PATCH] add modified property to video panel schema --- StorylinesSchema.json | 4 ++++ public/StorylinesSlideSchema.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/StorylinesSchema.json b/StorylinesSchema.json index b1b4a37b..c0ef9d8a 100644 --- a/StorylinesSchema.json +++ b/StorylinesSchema.json @@ -281,6 +281,10 @@ "type": { "type": "string", "enum": ["video"] + }, + "modified": { + "type": "boolean", + "description": "An optional tag that specifies whether the panel has been modified from its default configuration" } }, "required": ["src", "type"] diff --git a/public/StorylinesSlideSchema.json b/public/StorylinesSlideSchema.json index fa41ece8..6435f31f 100644 --- a/public/StorylinesSlideSchema.json +++ b/public/StorylinesSlideSchema.json @@ -358,6 +358,10 @@ "customStyles": { "type": "string", "description": "Additional CSS styles to apply to the panel." + }, + "modified": { + "type": "boolean", + "description": "An optional tag that specifies whether the panel has been modified from its default configuration" } }, "additionalProperties": false,