From 768d457c0bf5bede3005755185c3a36eed144b6c Mon Sep 17 00:00:00 2001 From: Vincent Marchetti Date: Fri, 5 Jun 2026 12:38:43 -0400 Subject: [PATCH] Added the key "scope" to the list of properties which will not be examined in search for duplicate ids --- presentation_validator/v4/unique_ids.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation_validator/v4/unique_ids.py b/presentation_validator/v4/unique_ids.py index af0261e..7126769 100644 --- a/presentation_validator/v4/unique_ids.py +++ b/presentation_validator/v4/unique_ids.py @@ -3,7 +3,7 @@ from presentation_validator.model import ErrorDetail from presentation_validator.v3.schemavalidator import create_snippet -ignore = ["target", "lookAt", "range","structures","first","last","start","source","body"] +ignore = ["target", "lookAt", "range","structures","first","last","start","source","body","scope"] # create a method where you pass in a manifest and it checks to see if the id is unique # if it is not unique, then it should raise a validation error def check(manifest):