From 9514d6a2bf7466d68f8e9621357cfccf3c6b5880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 24 Sep 2023 16:07:03 +0200 Subject: [PATCH] schemas: permissions additional_urls are of the same type as url. --- schemas/manifest.v2.schema.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index 4831e0a0..e4f10ab3 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -294,9 +294,10 @@ }, "additional_urls": { "type": "array", - "items": { - "type": "string" - } + "items": {"$ref": "#/$defs/path_absolute"} + }, + "label": { + "type": "string" } } }