From c577b3c45149f77b2e4c1855212e250d263cb15c 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 3e327212a..45cb87ed6 100644 --- a/.schemas/category.json +++ b/.schemas/category.json @@ -32,6 +32,7 @@ "required":[ "title" ], + "additionalProperties": false, "title":"Video", "type":"object" }