generated from pagopa/pagopa-quarkus-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to version 0.4.1-16-updated-helm-charts [skip ci]
- Loading branch information
1 parent
6dc4d67
commit 9df2dbe
Showing
6 changed files
with
142 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,176 +1,187 @@ | ||
{ | ||
"openapi" : "3.0.3", | ||
"info" : { | ||
"title" : "PagoPa Payment Options (TEST)", | ||
"description" : "PagoPa Payment Options description", | ||
"termsOfService" : "https://www.pagopa.gov.it/", | ||
"version" : "${quarkus.application.version}" | ||
"openapi": "3.0.3", | ||
"info": { | ||
"title": "PagoPa Payment Options (TEST)", | ||
"description": "PagoPa Payment Options description", | ||
"termsOfService": "https://www.pagopa.gov.it/", | ||
"version": "0.4.1-16-updated-helm-charts" | ||
}, | ||
"servers" : [ { | ||
"url" : "${host}/quarkus-template/api/v1 - APIM" | ||
} ], | ||
"paths" : { | ||
"/info" : { | ||
"get" : { | ||
"tags" : [ "Generic" ], | ||
"responses" : { | ||
"200" : { | ||
"description" : "OK", | ||
"content" : { | ||
"application/json" : { | ||
"schema" : { | ||
"$ref" : "#/components/schemas/AppInfo" | ||
"servers": [ | ||
{ | ||
"url": "${host}/quarkus-template/api/v1 - APIM" | ||
} | ||
], | ||
"paths": { | ||
"/info": { | ||
"get": { | ||
"tags": [ | ||
"Generic" | ||
], | ||
"responses": { | ||
"200": { | ||
"description": "OK", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/AppInfo" | ||
} | ||
} | ||
} | ||
}, | ||
"400" : { | ||
"description" : "Bad Request", | ||
"content" : { | ||
"application/json" : { } | ||
"400": { | ||
"description": "Bad Request", | ||
"content": { | ||
"application/json": {} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/payment-options/organizations/{fiscal-code}/notices/{notice-number}" : { | ||
"get" : { | ||
"tags" : [ "Payment Options Resource" ], | ||
"summary" : "Get payment options", | ||
"description" : "Retrieve the payment options related to the provided input", | ||
"operationId" : "getPaymentOptions", | ||
"parameters" : [ { | ||
"name" : "fiscal-code", | ||
"in" : "path", | ||
"required" : true, | ||
"schema" : { | ||
"type" : "string" | ||
} | ||
}, { | ||
"name" : "notice-number", | ||
"in" : "path", | ||
"required" : true, | ||
"schema" : { | ||
"type" : "string" | ||
} | ||
}, { | ||
"name" : "idPsp", | ||
"in" : "query", | ||
"schema" : { | ||
"type" : "string" | ||
} | ||
}, { | ||
"name" : "X-Session-Id", | ||
"in" : "header", | ||
"schema" : { | ||
"type" : "string" | ||
"/payment-options/organizations/{fiscal-code}/notices/{notice-number}": { | ||
"get": { | ||
"tags": [ | ||
"Payment Options Resource" | ||
], | ||
"summary": "Get payment options", | ||
"description": "Retrieve the payment options related to the provided input", | ||
"operationId": "getPaymentOptions", | ||
"parameters": [ | ||
{ | ||
"name": "fiscal-code", | ||
"in": "path", | ||
"required": true, | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"name": "notice-number", | ||
"in": "path", | ||
"required": true, | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"name": "idPsp", | ||
"in": "query", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"name": "X-Session-Id", | ||
"in": "header", | ||
"schema": { | ||
"type": "string" | ||
} | ||
} | ||
} ], | ||
"responses" : { | ||
"500" : { | ||
"$ref" : "#/components/responses/ErrorResponse500" | ||
], | ||
"responses": { | ||
"500": { | ||
"$ref": "#/components/responses/ErrorResponse500" | ||
}, | ||
"400" : { | ||
"$ref" : "#/components/responses/ErrorResponse400" | ||
"400": { | ||
"$ref": "#/components/responses/ErrorResponse400" | ||
}, | ||
"404" : { | ||
"$ref" : "#/components/responses/ErrorResponse404" | ||
"404": { | ||
"$ref": "#/components/responses/ErrorResponse404" | ||
}, | ||
"200" : { | ||
"description" : "Success", | ||
"content" : { | ||
"application/json" : { } | ||
"200": { | ||
"description": "Success", | ||
"content": { | ||
"application/json": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components" : { | ||
"schemas" : { | ||
"AppInfo" : { | ||
"type" : "object", | ||
"properties" : { | ||
"name" : { | ||
"type" : "string" | ||
"components": { | ||
"schemas": { | ||
"AppInfo": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"version" : { | ||
"type" : "string" | ||
"version": { | ||
"type": "string" | ||
}, | ||
"environment" : { | ||
"type" : "string" | ||
"environment": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"ErrorResponse" : { | ||
"type" : "object", | ||
"properties" : { | ||
"httpStatusCode" : { | ||
"format" : "int32", | ||
"type" : "integer", | ||
"example" : 500 | ||
"ErrorResponse": { | ||
"type": "object", | ||
"properties": { | ||
"httpStatusCode": { | ||
"format": "int32", | ||
"type": "integer", | ||
"example": 500 | ||
}, | ||
"httpStatusDescription" : { | ||
"type" : "string", | ||
"example" : "Internal Server Error" | ||
"httpStatusDescription": { | ||
"type": "string", | ||
"example": "Internal Server Error" | ||
}, | ||
"errorMessage" : { | ||
"type" : "string", | ||
"example" : "An unexpected error has occurred. Please contact support." | ||
"errorMessage": { | ||
"type": "string", | ||
"example": "An unexpected error has occurred. Please contact support." | ||
}, | ||
"appErrorCode" : { | ||
"type" : "string", | ||
"example" : "ODP-<ERR_ID>" | ||
"appErrorCode": { | ||
"type": "string", | ||
"example": "ODP-<ERR_ID>" | ||
}, | ||
"timestamp" : { | ||
"format" : "int64", | ||
"type" : "integer", | ||
"example" : 1724425035 | ||
"timestamp": { | ||
"format": "int64", | ||
"type": "integer", | ||
"example": 1724425035 | ||
}, | ||
"dateTime" : { | ||
"type" : "string", | ||
"example" : "2024-08-23T14:57:15.635528" | ||
"dateTime": { | ||
"type": "string", | ||
"example": "2024-08-23T14:57:15.635528" | ||
} | ||
} | ||
} | ||
}, | ||
"responses" : { | ||
"ErrorResponse400" : { | ||
"description" : "Default app exception for status 400", | ||
"content" : { | ||
"application/json" : { | ||
"schema" : { | ||
"$ref" : "#/components/schemas/ErrorResponse" | ||
"responses": { | ||
"ErrorResponse400": { | ||
"description": "Default app exception for status 400", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ErrorResponse" | ||
} | ||
} | ||
} | ||
}, | ||
"ErrorResponse404" : { | ||
"description" : "Default app exception for status 404", | ||
"content" : { | ||
"application/json" : { | ||
"schema" : { | ||
"$ref" : "#/components/schemas/ErrorResponse" | ||
"ErrorResponse404": { | ||
"description": "Default app exception for status 404", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ErrorResponse" | ||
} | ||
} | ||
} | ||
}, | ||
"ErrorResponse500" : { | ||
"description" : "Internal Server Error", | ||
"content" : { | ||
"application/json" : { | ||
"schema" : { | ||
"$ref" : "#/components/schemas/ErrorResponse" | ||
"ErrorResponse500": { | ||
"description": "Internal Server Error", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/ErrorResponse" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"securitySchemes" : { | ||
"ApiKey" : { | ||
"type" : "apiKey", | ||
"name" : "Ocp-Apim-Subscription-Key" | ||
"securitySchemes": { | ||
"ApiKey": { | ||
"type": "apiKey", | ||
"name": "Ocp-Apim-Subscription-Key" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters