From c1cdb6bdccc5a769d82d9072486de67532931b96 Mon Sep 17 00:00:00 2001 From: Sebastian Frank Date: Wed, 2 Sep 2026 16:45:36 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(schema):=20add=20project-level?= =?UTF-8?q?=20audit=20(only=20enabled)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schemas/config/project.schema.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/schemas/config/project.schema.json b/schemas/config/project.schema.json index 5575677..5b0c8fe 100644 --- a/schemas/config/project.schema.json +++ b/schemas/config/project.schema.json @@ -272,6 +272,15 @@ } } }, + "audit": { + "type": "object", + "additionalProperties": false, + "properties": { + "enabled": { + "type": "boolean" + } + } + }, "strictFields": { "type": "boolean" },