Skip to content

Commit

Permalink
Merge pull request #365 from pvretano/issue-364
Browse files Browse the repository at this point in the history
Change minDuration/maxDuration to integers.
  • Loading branch information
bpross-52n authored Dec 11, 2023
2 parents a1e94a9 + 0c78649 commit fa84750
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 22 deletions.
10 changes: 2 additions & 8 deletions core/requirements/job-list/REQ_duration-def.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ name: minDuration
in: query
required: false
schema:
type: array
items:
type: integer
type: integer
----
--
Expand All @@ -29,11 +27,7 @@ name: maxDuration
in: query
required: false
schema:
type: array
items:
type: integer
style: form
explode: false
type: integer
----
--
====
10 changes: 2 additions & 8 deletions openapi/ogcapi-processes.bundled.json
Original file line number Diff line number Diff line change
Expand Up @@ -5621,21 +5621,15 @@
"in": "query",
"required": false,
"schema": {
"type": "array",
"items": {
"type": "integer"
}
"type": "integer"
}
},
"maxDuration": {
"name": "maxDuration",
"in": "query",
"required": false,
"schema": {
"type": "array",
"items": {
"type": "integer"
}
"type": "integer"
}
},
"w": {
Expand Down
4 changes: 1 addition & 3 deletions openapi/parameters/processes-core/maxDuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ name: maxDuration
in: query
required: false
schema:
type: array
items:
type: integer
type: integer
4 changes: 1 addition & 3 deletions openapi/parameters/processes-core/minDuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ name: minDuration
in: query
required: false
schema:
type: array
items:
type: integer
type: integer

0 comments on commit fa84750

Please sign in to comment.