From 1728d8cc5e6389e58d269fde2a714a0bb6637011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 24 Sep 2023 14:42:41 +0200 Subject: [PATCH] Fix manifest.toml schema : add antifeatures section --- schemas/manifest.v2.schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index bb6f6b02..4831e0a0 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -142,6 +142,14 @@ } } }, + "antifeatures": { + "type": "object", + "required": [], + "additionalProperties": false, + "patternProperties": { + "^[a-zA-Z0-9_-]*$": {"$ref": "#/$defs/translated_string"} + } + }, "install": { "type": "object", "required": [],