fix: Fix eventFilter definition in ResponseDefinitions

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-06-04 14:46:44 +02:00 committed by Côme Chilliet
parent 8aae03c66c
commit d3c06d5dea
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ namespace OCA\Webhooks;
* httpMethod: string,
* uri: string,
* event?: string,
* eventFilter?: array<mixed>,
* eventFilter?: array<string,mixed>,
* headers?: array<string,string>,
* authMethod: string,
* authData?: array<string,mixed>,

View file

@ -46,8 +46,8 @@
"type": "string"
},
"eventFilter": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "object"
}
},