From 5f765d15b2f5f9e76350c258fec310b4a317bd1d Mon Sep 17 00:00:00 2001 From: Benjamin Dean Date: Wed, 18 Jul 2018 23:56:05 -0700 Subject: [PATCH] Now can handle this property as an object, string, or null to be backward compatible --- src/utils/validators/schemas/manifest.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/validators/schemas/manifest.schema.json b/src/utils/validators/schemas/manifest.schema.json index 1e01632..d61d8dd 100644 --- a/src/utils/validators/schemas/manifest.schema.json +++ b/src/utils/validators/schemas/manifest.schema.json @@ -58,7 +58,7 @@ } }, "locale": { - "type": ["string", "null"], + "type": ["object", "string", "null"], "title": "Locale schema", "description": "Localization information about this app.", "pattern": "^[a-zA-Z]{2}-[a-zA-Z]{2}$",