From 7e936c8028ea584938c259d9900b98c761630c4f Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Fri, 20 Sep 2024 22:59:52 -0400 Subject: [PATCH] fix case for mlm:input empty [] against bands check --- json-schema/schema.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/json-schema/schema.json b/json-schema/schema.json index df9e8e7..697ea9b 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -847,7 +847,9 @@ "properties": { "mlm:input": { "type": "array", + "minItems": 1, "items": { + "type": "object", "required": [ "bands" ],