From 26fa5c07e49fbc5f356ea1d1bfedb2572ade80dc Mon Sep 17 00:00:00 2001 From: Nathaniel Kofalt Date: Wed, 30 Aug 2017 16:49:37 -0500 Subject: [PATCH] Set uriOrEmpty from oneOf to anyOf for compatibility with validators that do not implement format uri --- spec/manifest.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/manifest.schema.json b/spec/manifest.schema.json index 6333e80..1231ba5 100644 --- a/spec/manifest.schema.json +++ b/spec/manifest.schema.json @@ -15,7 +15,7 @@ "uriOrEmpty": { "type": "string", "maxLength": 1000, - "oneOf": [ + "anyOf": [ { "format": "uri" }, { "maxLength": 0 } ],