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
Copy file name to clipboardExpand all lines: openapi.yaml
+254-1Lines changed: 254 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3505,7 +3505,7 @@ paths:
3505
3505
Lists information about pricing and available parameters for searching and ordering products for a commercial data collection specified by the identifier `collection_id`.
3506
3506
STAC-compliant general information about the collection must be available at `GET collections/{collection_id}`.
3507
3507
tags:
3508
-
- Commercial data
3508
+
- Commercial Data
3509
3509
security:
3510
3510
- {}
3511
3511
- Bearer: []
@@ -3645,6 +3645,259 @@ paths:
3645
3645
$ref: '#/components/responses/client_error_auth'
3646
3646
5XX:
3647
3647
$ref: '#/components/responses/server_error'
3648
+
/commercial_data/search:
3649
+
post:
3650
+
summary: Search for available products in a commercial data collection.
3651
+
operationId: commercial-data-search
3652
+
description: |-
3653
+
Search for products in a commercial data collection. Available filtering parameters are listed at `GET /commercial_data/collections/{collection_id}`.
For time series: The last or end date and time for the data, in
3796
+
UTC. Formatted as a [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339.html)
3797
+
date-time.
3798
+
title:
3799
+
$ref: '#/components/schemas/eo_title'
3800
+
description:
3801
+
$ref: '#/components/schemas/eo_description'
3802
+
license:
3803
+
$ref: '#/components/schemas/stac_license'
3804
+
providers:
3805
+
$ref: '#/components/schemas/stac_providers'
3806
+
created:
3807
+
$ref: '#/components/schemas/created'
3808
+
updated:
3809
+
$ref: '#/components/schemas/updated'
3810
+
expires:
3811
+
type: string
3812
+
format: date-time
3813
+
description: >-
3814
+
Time until which the assets are accessible, in UTC. Formatted as
3815
+
a [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339.html) date-time.
3816
+
example: '2020-11-01T00:00:00Z'
3817
+
assets:
3818
+
$ref: '#/components/schemas/stac_assets'
3819
+
links:
3820
+
type: array
3821
+
description: Links related to this product
3822
+
items:
3823
+
$ref: '#/components/schemas/link'
3824
+
links:
3825
+
$ref: '#/components/schemas/links_pagination'
3826
+
example:
3827
+
products:
3828
+
- type: Feature
3829
+
stac_version: 0.9.0
3830
+
id: c8a1f88d-89cf-4933-9118-45e9c1a5df20
3831
+
geometry:
3832
+
type: Polygon
3833
+
coordinates:
3834
+
-
3835
+
-
3836
+
- 12.36555287044679
3837
+
- 41.94403289260048
3838
+
-
3839
+
- 12.36571746774068
3840
+
- 41.86399361096971
3841
+
-
3842
+
- 12.60746759743069
3843
+
- 41.86372776276345
3844
+
-
3845
+
- 12.60758647471871
3846
+
- 41.94379931812686
3847
+
-
3848
+
- 12.36555287044679
3849
+
- 41.94403289260048
3850
+
properties:
3851
+
constellation: PHR
3852
+
acquisitionDate: "2022-03-21T10:11:15.055Z"
3853
+
azimuthAngle: 179.9852862071639
3854
+
cloudCover: 0
3855
+
geometryCentroid:
3856
+
lat: 41.903935647240964
3857
+
lon: 12.486569672582828
3858
+
processingLevel: SENSOR
3859
+
sensorType: OPTICAL
3860
+
spectralRange: VISIBLE
3861
+
links: []
3862
+
4XX:
3863
+
$ref: '#/components/responses/client_error_auth'
3864
+
5XX:
3865
+
$ref: '#/components/responses/server_error'
3866
+
requestBody:
3867
+
required: true
3868
+
description: The base data for the secondary web service to create
3869
+
content:
3870
+
application/json:
3871
+
schema:
3872
+
title: Search Commercial Products Request
3873
+
type: object
3874
+
required:
3875
+
- collection_id
3876
+
- parameters
3877
+
properties:
3878
+
collection_id:
3879
+
type: string
3880
+
description: Unique identifier of the collection.
3881
+
parameters:
3882
+
type: object
3883
+
description: Key-value pairs of available `search_parameters` as listed at `GET /commercial_data/collections/{collection_id}` for filtering available products.
3884
+
additionalProperties:
3885
+
x-additionalPropertiesName: Search Parameter Name
3886
+
AnyValue:
3887
+
description: Value of the search parameter to be used in the request.
0 commit comments