From 8ed0b52494b6282c4941375c6b52218aec8e97c4 Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Fri, 15 Oct 2021 10:57:37 +0200 Subject: [PATCH] Added generated-with --- source/general/manifest/manifest.2.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/source/general/manifest/manifest.2.json b/source/general/manifest/manifest.2.json index 2bdade35..696920a2 100644 --- a/source/general/manifest/manifest.2.json +++ b/source/general/manifest/manifest.2.json @@ -163,7 +163,29 @@ ] }, "license": { "type": "string", "title": "License", "description": "The license of the pack" }, - "url": { "type": "string", "format": "uri", "title": "Url", "description": "The home website of your pack" } + "url": { "type": "string", "format": "uri", "title": "Url", "description": "The home website of your pack" }, + "generated_with": { + "title": "Generated With", + "description": "A list of tools and their version that have modified this pack", + "type": "object", + "propertyNames": { + "pattern": "^[a-zA-Z0-9\\_\\-]+$", + "maxLength": 32, + "maximum": 32 + }, + "additionalProperties": { + "type": "array", + "examples": [["1.0.0"]], + "title": "Tool", + "description": "The tool and the version used to modified this pack", + "items": { + "type": "string", + "title": "Version", + "examples": ["1.0.0"], + "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" + } + } + } } } }