Automated commit by github action: 5646648608

This commit is contained in:
GitHub Action Bot
2023-07-24 15:16:15 +00:00
parent 1cc840a618
commit 7796e2dc15
3 changed files with 17 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
post: post:
operationId: validateSubscriptionFilter operationId: testSubscriptionFilter
tags: tags:
- Triggers - Triggers
summary: Validate a Subscription Filter summary: Validate a Subscription Filter
@@ -32,6 +32,8 @@ post:
$ref: '../schemas/ValidateFilterOutputDto.yaml' $ref: '../schemas/ValidateFilterOutputDto.yaml'
example: example:
isValid: true isValid: true
isValidJSONPath: true
isPathExist: true
'400': '400':
$ref: '../../v3/responses/400.yaml' $ref: '../../v3/responses/400.yaml'
'401': '401':

View File

@@ -2,4 +2,16 @@ type: object
properties: properties:
isValid: isValid:
type: boolean type: boolean
description: True if specified filter expression is valid against the input, false otherwise. default: false
description: When this field is true, the filter expression is valid against the input.
example: true
isValidJSONPath:
type: boolean
default: false
description: When this field is true, the filter expression is using a valid JSON path.
example: true
isPathExist:
type: boolean
default: false
description: When this field is true, the filter expression is using an existing path.
example: true

View File

@@ -1,7 +1,7 @@
post: post:
operationId: createAccessRequest operationId: createAccessRequest
security: security:
- oauth2: [ idn:access-request:create ] - oauth2: [ idn:access-request:manage ]
summary: Submit an Access Request summary: Submit an Access Request
tags: tags:
- Access Requests - Access Requests