- remove conflict error response in OpenAPI
(mistakenly added here but only need for NCMP interface)
Issue-ID: CPS-2335
Change-Id: Ib24a4d0853fff2104958879f7d247197725b5870
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
- '409':
- $ref: '#/components/responses/Conflict'
'500':
$ref: '#/components/responses/InternalServerError'
status: 403
message: "Request Forbidden"
details: "This request is forbidden"
- Conflict:
- description: "Conflict"
- content:
- application/json:
- schema:
- $ref: '#/components/schemas/ErrorMessage'
- example:
- status: 409
- message: "Conflict"
- details: "The provided request violates a policy rule"
InternalServerError:
description: "Internal server error"