fix(schema): add audit to action schema (enabled + actions[post,get])

This commit is contained in:
2026-09-03 10:59:06 +00:00
parent c1cdb6bdcc
commit 3abdc52fef
+19
View File
@@ -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": [