Skip to content

Commit be6e962

Browse files
committed
Remove openeo:property_filters again #396
1 parent 3034cdf commit be6e962

File tree

3 files changed

+2
-24
lines changed

3 files changed

+2
-24
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- `create-form` to link to the registration page
1616
- `recovery-form` to link to the credentials recovery page.
1717
- `GET /me`: New Relation types `alternate` and `related` for user-specific external pages. [#404](https://github.com/Open-EO/openeo-api/issues/404)
18-
- `GET /collections` and `GET /collections/{collection_id}` (and implicitly `GET /jobs/{job_id}/results`): Added a field that can indicate which properties can be filtered on when loading data from a collection. [#396](https://github.com/Open-EO/openeo-api/issues/396)
1918
- `GET /credentials/oidc`: Allow `authorization_code` and `urn:ietf:params:oauth:grant-type:device_code` (both without PKCE) as grants for `default_clients`. [#410](https://github.com/Open-EO/openeo-api/issues/410)
2019
- `GET /jobs` and `GET /jobs/{job_id}`: Added a links property that can for example link to results and logs. [#453](https://github.com/Open-EO/openeo-api/issues/453)
2120
- `GET /jobs/{job_id}/results`:

extensions/federation/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@ schema:
160160
```
161161
162162
**Note:** In Collections this should generally be provided on the top-level of the object.
163-
If users should be able to filter on back-ends in `load_collection`, please provide `federation:backends` as an element in `openeo:property_filters`.
164-
Then, `federation:backends` as defined in the schema above should also be provided in the `summaries`.
165163
166164
### Examples
167165

openapi.yaml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ tags:
500500
501501
## STAC
502502
503-
For data discovery of Earth Observation Collections at the back-ends, openEO strives for compatibility with the specifications [SpatioTemporal Asset Catalog (STAC)](https://stacspec.org/) and [OGC API - Features - Part 1: Core](http://docs.opengeospatial.org/is/17-069r3/17-069r3.html) as far as possible. Implementing the data discovery endpoints of openEO should also produce valid STAC API 0.9.0 and OGC API - Features 1.0 responses, including ([partial](#provide-data-for-download)) compatibility with their APIs.
503+
For data discovery of Earth Observation Collections at the back-ends, openEO strives for compatibility with the specifications [SpatioTemporal Asset Catalog (STAC)](https://stacspec.org/) and [OGC API - Features - Part 1: Core](http://docs.opengeospatial.org/is/17-069r3/17-069r3.html) as far as possible. Implementing the data discovery endpoints of openEO also produced valid STAC API 1.0 and OGC API - Features 1.0 responses, including ([partial](#provide-data-for-download)) compatibility with their APIs.
504504
505505
The data discovery endpoints `GET /collections` and `GET /collections/{collection_id}` are compatible with OGC API - Features and STAC. Both specifications define additional endpoints that need to be implemented to be fully compatible. The additional endpoints can easily be integrated into an openEO API implementation. A rough list of actions for compatibility is available below, but please refer to their specifications to find out the full details.
506506
@@ -1333,7 +1333,7 @@ paths:
13331333
Lists **all** information about a specific collection specified by the
13341334
identifier `collection_id`.
13351335
1336-
This endpoint is compatible with [STAC API 0.9.0](https://stacspec.org) and
1336+
This endpoint is compatible with [STAC API](https://stacspec.org) and
13371337
[OGC API - Features](http://docs.opengeospatial.org/is/17-069r3/17-069r3.html).
13381338
[STAC API](https://github.com/radiantearth/stac-spec/tree/v0.9.0/api-spec)
13391339
features / extensions and
@@ -1458,10 +1458,6 @@ paths:
14581458
- B10
14591459
- B11
14601460
- B12
1461-
'openeo:property_filters':
1462-
- platform
1463-
- eo:cloud_cover
1464-
- sat:orbit_state
14651461
summaries:
14661462
'constellation':
14671463
- Sentinel-2
@@ -4417,21 +4413,6 @@ components:
44174413
x-additionalPropertiesName: Dimension Name
44184414
allOf:
44194415
- $ref: '#/components/schemas/dimension'
4420-
'openeo:property_filters':
4421-
description: |-
4422-
Gives a list of properties you can filter on when loading data from the collection.
4423-
Returning an empty array means that no property-based filters are available.
4424-
4425-
This is a guide for users to get an overview of available properties to filter on.
4426-
More metadata about the properties can be found in `summaries`.
4427-
4428-
If this property is not present, it means that the collections does
4429-
not provide any collection-specific details about available property-based filters.
4430-
It's then up to other means of documentation to inform the user,
4431-
e.g. there could be documentation about property filters that work across collections.
4432-
type: array
4433-
items:
4434-
type: string
44354416
summaries:
44364417
title: STAC Summaries (Collection Properties)
44374418
description: |-

0 commit comments

Comments
 (0)