From 574bf3ada83e42dece8cbd599513cdb69fce8179 Mon Sep 17 00:00:00 2001 From: Jon Banafato Date: Sun, 28 Jul 2024 14:03:26 -0400 Subject: [PATCH] Disallow additional properties on category 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 #1171. Resolves #1171. --- .schemas/category.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.schemas/category.json b/.schemas/category.json index 0e8068413..9b48e8f85 100644 --- a/.schemas/category.json +++ b/.schemas/category.json @@ -18,6 +18,7 @@ "required":[ "title" ], + "additionalProperties": false, "title":"Video", "type":"object" }