From f64c93777c3670e162221ef452345c5001cc608b 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/json-schema/schema.json b/json-schema/schema.json index df9e8e7..c9ec4da 100644 --- a/json-schema/schema.json +++ b/json-schema/schema.json @@ -847,7 +847,10 @@ "properties": { "mlm:input": { "type": "array", + "$comment": "Below 'minItems' ensures that band check does not fail for explicitly empty 'mlm:inputs'.", + "minItems": 1, "items": { + "type": "object", "required": [ "bands" ],