From 58847fffc778a44ba6df43198b3037f7654175b1 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Sun, 28 Jul 2024 14:26:41 -0400 Subject: [PATCH] Disallow additional properties on video schema The intent of this change is to update the schema without any test failures. This means that other changes that affect the data should happen independently from the pull request associated with this commit, and it should be kept up to date and merged once the schema tests pass. To contribute to this change, open PRs that would correct any data that does not conform to the JSON schema. Discussion regarding other schema updates should happen in the associated issue at #1173. Resolves #1173. --- .schemas/video.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.schemas/video.json b/.schemas/video.json index a75ce0fa0..d45a52d36 100644 --- a/.schemas/video.json +++ b/.schemas/video.json @@ -144,6 +144,7 @@ "title", "videos" ], + "additionalProperties": false, "title":"Video", "type":"object" }