From bd6a08d9cbe65bb517d4b5fdbea3a71c641bad41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 24 Sep 2023 16:09:47 +0200 Subject: [PATCH] schemas: Add support install.*.pattern.{regex,error} --- schemas/manifest.v2.schema.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index deaab194..698affa9 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -199,6 +199,20 @@ } } ] + }, + "pattern": { + "type": "object", + "required": [], + "additionalProperties": false, + "properties": { + "regexp": { + "type": "string", + "format": "regex" + }, + "error": { + "type": "string" + } + } } } }