From acb85a1f5fa9a2825b9dce1975386f07dc546e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9?= Date: Thu, 13 Aug 2020 10:22:51 +0200 Subject: [PATCH] Fix output schema impossible validation basic, detailed and verbose output can't be valid against exactly one subschema because they share the same definition --- output/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/schema.json b/output/schema.json index bef85935..e86c29ab 100644 --- a/output/schema.json +++ b/output/schema.json @@ -3,7 +3,7 @@ "$id": "https://json-schema.org/draft/2019-09/output/schema", "description": "A schema that validates the minimum requirements for validation output", - "oneOf": [ + "anyOf": [ { "$ref": "#/$defs/flag" }, { "$ref": "#/$defs/basic" }, { "$ref": "#/$defs/detailed" },