From 8d7897d04df7d7e75d6bc02a1ed557229542dddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Tue, 20 Feb 2024 13:41:31 +0100 Subject: [PATCH] manifest schema: allow caps for install.*.choices keys --- schemas/manifest.v2.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index 38a9a8ab42..9ee7767c21 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -187,7 +187,7 @@ "required": [], "additionalProperties": false, "patternProperties": { - "^[a-z][a-z0-9_]*$": { + "^[a-zA-Z][a-zA-Z0-9_]*$": { "type": "string" } }