From ce91f3e92dec06fecd819d5f5f8d303c39967900 Mon Sep 17 00:00:00 2001 From: Thomas Heritage Date: Tue, 21 Oct 2025 17:14:31 +0100 Subject: [PATCH 1/2] Update Annex A example Make the $schema value equal to what would typically be used per: * https://json-schema.org/understanding-json-schema/basics#declaring-a-json-schema * All the examples in https://datatracker.ietf.org/doc/html/draft-bhutton-json-schema-00 --- doc/main.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/main.html b/doc/main.html index 18473dc..c998aa1 100644 --- a/doc/main.html +++ b/doc/main.html @@ -309,7 +309,7 @@

Copyright and License Element

 {
-  "$schema": "https://json-schema.org/draft/2020-12/meta/core",
+  "$schema": "https://json-schema.org/draft/2020-12/schema",
   "$id": "https://smpte-ra.org/json-schema/2199-1/2022/foo",
   "$comment": "See SMPTE AG 30 (https://www.smpte.org/about/policies-and-governance) for copyright and license information.",
   "title": "foo",

From 9413788b31d0c494b5465c7bed0442bef20121a3 Mon Sep 17 00:00:00 2001
From: Thomas Heritage 
Date: Tue, 21 Oct 2025 17:23:13 +0100
Subject: [PATCH 2/2] Update Annex A example

$id must comply with AG 25!
---
 doc/main.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/main.html b/doc/main.html
index c998aa1..74d2d2b 100644
--- a/doc/main.html
+++ b/doc/main.html
@@ -310,7 +310,7 @@ 

Copyright and License Element

 {
   "$schema": "https://json-schema.org/draft/2020-12/schema",
-  "$id": "https://smpte-ra.org/json-schema/2199-1/2022/foo",
+  "$id": "https://www.smpte-ra.org/json-schema/2199-1/2022/foo",
   "$comment": "See SMPTE AG 30 (https://www.smpte.org/about/policies-and-governance) for copyright and license information.",
   "title": "foo",
   "type": "object",