forked from opengeospatial/ogcapi-coverages
-
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.
openapi: Fixed SwaggerHub warnings for numberMatched and numberReturned
- The numberMatched.yaml and numberReturned.yaml files should have been referenced in the collections response - Using elements rather than features and items to avoid confusion with OGC API - Features "items"
- Loading branch information
1 parent
902290e
commit 6a1487e
Showing
4 changed files
with
12 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
description: |- | ||
The number of features of the feature type that match the selection | ||
parameters like `bbox`. | ||
The number of elements in the response that match the selection parameters like `bbox`. | ||
type: integer | ||
minimum: 0 | ||
example: 127 | ||
example: 127 |
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,9 +1,9 @@ | ||
description: |- | ||
The number of items in the response. | ||
A server may omit this information, if the information about the | ||
number of items is not known or difficult to compute. | ||
The number of elements in the response. | ||
A server may omit this information, if the information about the | ||
number of elements is not known or difficult to compute. | ||
If the value is provided, the value shall be identical to the number | ||
of items in the response. | ||
of elements in the response. | ||
type: integer | ||
minimum: 0 | ||
example: 10 |