Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PB-615: Spec multipart upload process #425

Merged
merged 3 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions spec/static/spec/v1/openapitransactional.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ tags:

| Media Type | Description | File Extension(s) |
| ---------- | ----------- | ----------------- |
| application/vnd.apache.parquet | Apache Parquet column-oriented data file format | .parquet |
| application/x.ascii-grid+zip | Zipped ESRI ASCII raster format (.asc) | .zip |
| application/x.ascii-xyz+zip | Zipped XYZ (.xyz) | .zip |
| application/x.e00+zip | Zipped e00 | .zip |
Expand Down Expand Up @@ -60,6 +61,8 @@ tags:
| application/x.geojson+zip | Zipped GeoJSON | .zip |
| application/x.interlis; version=2.3 | Interlis 2 | .xtf, .xml |
| application/x.interlis+zip; version=2.3 | Zipped XTF (2.3) | .zip |
| application/x.interlis; version=2.4 | Interlis 2 | .xtf | .xml |
| application/x.interlis+zip; version=2.4 | Zipped XTF (2.4) | .zip |
| application/x.interlis; version=1 | Interlis 1 | .itf |
| application/x.interlis+zip; version=1 | Zipped ITF | .zip |
| image/tiff; application=geotiff; profile=cloud-optimized | Cloud Optimized GeoTIFF (COG) | .tiff, .tif |`
Expand Down Expand Up @@ -94,7 +97,7 @@ tags:

## Steps to upload Assets

To upload assets files there are generally three steps involved:
To upload an assets file there are generally three steps involved:

<ol>
<li>Create new upload process</li>
Expand Down Expand Up @@ -599,7 +602,9 @@ paths:
$ref: "#/components/responses/ServerError"
delete:
summary: Delete an existing feature by Id
description: Use this method to delete an existing feature/item.
description: |
Use this method to delete an existing feature/item. The feature can only be deleted if all
its assets have been deleted first. Also see [Delete an existing asset by id](#tag/Data-Management/operation/deleteAsset).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"See also" sounds less weird than "Also see" I think.

operationId: deleteFeature
tags:
- Data Management
Expand Down
4 changes: 3 additions & 1 deletion spec/transaction/paths.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ paths:
$ref: "../components/responses.yaml#/components/responses/ServerError"
delete:
summary: Delete an existing feature by Id
description: Use this method to delete an existing feature/item.
description: |
Use this method to delete an existing feature/item. The feature can only be deleted if all
its assets have been deleted first. Also see [Delete an existing asset by id](#tag/Data-Management/operation/deleteAsset).
operationId: deleteFeature
tags:
- Data Management
Expand Down
3 changes: 3 additions & 0 deletions spec/transaction/tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ tags:

| Media Type | Description | File Extension(s) |
| ---------- | ----------- | ----------------- |
| application/vnd.apache.parquet | Apache Parquet column-oriented data file format | .parquet |
| application/x.ascii-grid+zip | Zipped ESRI ASCII raster format (.asc) | .zip |
| application/x.ascii-xyz+zip | Zipped XYZ (.xyz) | .zip |
| application/x.e00+zip | Zipped e00 | .zip |
Expand Down Expand Up @@ -46,6 +47,8 @@ tags:
| application/x.geojson+zip | Zipped GeoJSON | .zip |
| application/x.interlis; version=2.3 | Interlis 2 | .xtf, .xml |
| application/x.interlis+zip; version=2.3 | Zipped XTF (2.3) | .zip |
| application/x.interlis; version=2.4 | Interlis 2 | .xtf | .xml |
| application/x.interlis+zip; version=2.4 | Zipped XTF (2.4) | .zip |
| application/x.interlis; version=1 | Interlis 1 | .itf |
| application/x.interlis+zip; version=1 | Zipped ITF | .zip |
| image/tiff; application=geotiff; profile=cloud-optimized | Cloud Optimized GeoTIFF (COG) | .tiff, .tif |`
Expand Down