From 53a8a6050dfcd614bf07f3487bd06f251f942596 Mon Sep 17 00:00:00 2001 From: kasimeka Date: Tue, 27 May 2025 13:23:22 +0300 Subject: [PATCH] feat(schema): add `last-updated` field --- schema/meta.schema.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/schema/meta.schema.json b/schema/meta.schema.json index 3529a1b6..97cc4a4e 100644 --- a/schema/meta.schema.json +++ b/schema/meta.schema.json @@ -36,13 +36,17 @@ "type": "string", "pattern": "^[^<>:\"/\\|?*]+$" }, - "version": { + "version": { "type": "string" }, - "automatic-version-check": { + "automatic-version-check": { "type": "boolean" + }, + "last-updated": { + "type": "integer", + "minimum": 0, + "exclusiveMaximum": 18446744073709551616 } }, "required": ["title", "requires-steamodded", "requires-talisman", "categories", "author", "repo", "downloadURL"] } -