From 3abdc52fefad762ac163bbd585cac3fc7412d60f Mon Sep 17 00:00:00 2001 From: Sebastian Frank Date: Thu, 3 Sep 2026 10:59:06 +0000 Subject: [PATCH] fix(schema): add audit to action schema (enabled + actions[post,get]) --- schemas/config/action.schema.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/schemas/config/action.schema.json b/schemas/config/action.schema.json index 7d4a89d..89ce7c3 100644 --- a/schemas/config/action.schema.json +++ b/schemas/config/action.schema.json @@ -27,6 +27,25 @@ "$ref": "hooks.schema.json" } ] + }, + "audit": { + "type": "object", + "additionalProperties": false, + "properties": { + "enabled": { + "type": "boolean" + }, + "actions": { + "type": "array", + "items": { + "type": "string", + "enum": [ + "get", + "post" + ] + } + } + } } }, "required": [