You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| datetime | string | OAFeat | Single date+time, or a range ('/' separator), formatted to [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). Use double dots `..` for open date ranges. |
121
121
| intersects | GeoJSON Geometry | STAC | Searches items by performing intersection between their geometry and provided GeoJSON geometry. All GeoJSON geometry types must be supported. |
@@ -124,6 +124,14 @@ The core parameters for STAC search are defined by OAFeat, and STAC adds a few p
124
124
125
125
See [examples](examples.md) for some example requests.
126
126
127
+
**limit** The limit parameter follows the same semantics of the OAFeat Item resource limit parameter. The value is
128
+
a suggestion to the server as to the maximum number of Item objects the
129
+
client would prefer in the response. The OpenAPI specification defines the default and maximum values
130
+
for this parameter. The base specifications define these with a default of 10 and a maximum of 10000, but implementers
131
+
may choose other values to advertise through their `service-desc` endpoint. If the limit parameter value is greater
132
+
than the advertised maximum limit, the server shall return the maximum possible number of items (ideally, the number
133
+
as the advertised maximum limit), rather than responding with an error.
134
+
127
135
Only one of either **intersects** or **bbox** may be specified. If both are specified, a 400 Bad Request response
0 commit comments