Skip to content

Commit

Permalink
chore(GPD): Update OpenAPI (#2147)
Browse files Browse the repository at this point in the history
* feat: Update GPD OpenAPI

* chore: Update GPD OpenAPI

* fix: Update GPD OpenAPI
  • Loading branch information
cap-ang authored Jun 14, 2024
1 parent 14658b3 commit ad5b627
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "PagoPA API Debt Position ${service}",
"description": "Progetto Gestione Posizioni Debitorie",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.11.27"
"version": "0.11.36"
},
"servers": [
{
Expand Down Expand Up @@ -58,11 +58,12 @@
"name": "page",
"in": "query",
"description": "Page number. Page value starts from 0",
"required": true,
"required": false,
"schema": {
"minimum": 0,
"type": "integer",
"format": "int32"
"format": "int32",
"default": 0
}
},
{
Expand Down
19 changes: 10 additions & 9 deletions src/domains/gps-app/api/gpd_api/v1/_openapi.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "PagoPA API Debt Position",
"description": "Progetto Gestione Posizioni Debitorie",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.11.28"
"version": "0.11.36"
},
"servers": [
{
Expand Down Expand Up @@ -145,14 +145,15 @@
}
},
{
"name": "page",
"in": "query",
"description": "Page number. Page value starts from 0",
"required": true,
"schema": {
"minimum": 0,
"type": "integer",
"format": "int32"
"name" : "page",
"in" : "query",
"description" : "Page number. Page value starts from 0",
"required" : false,
"schema" : {
"minimum" : 0,
"type" : "integer",
"format" : "int32",
"default" : 0
}
},
{
Expand Down
7 changes: 4 additions & 3 deletions src/domains/gps-app/api/gpd_api/v2/_openapi.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "PagoPA API Debt Position",
"description": "Progetto Gestione Posizioni Debitorie",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.11.28"
"version": "0.11.36"
},
"servers": [
{
Expand Down Expand Up @@ -148,11 +148,12 @@
"name": "page",
"in": "query",
"description": "Page number. Page value starts from 0",
"required": true,
"required": false,
"schema": {
"minimum": 0,
"type": "integer",
"format": "int32"
"format": "int32",
"default": 0
}
},
{
Expand Down

0 comments on commit ad5b627

Please sign in to comment.