Skip to content

Commit 4057e76

Browse files
Add processing execution link for traceability (#26)
* Add via link for traceability * via to processing-execution * example + changelog
1 parent 1f50195 commit 4057e76

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
### Added
10+
11+
- `processing-execution` relation type to link to the processing execution that produced the data.
12+
913
## [v1.1.0] - 2022-01-07
1014

1115
### Added

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ Potential expression formats with examples:
9494
The following types should be used as applicable `rel` types in the
9595
[Link Object](https://github.com/radiantearth/stac-spec/tree/master/item-spec/item-spec.md#link-object).
9696

97-
| Type | Description |
98-
| --------------------- | ------------------------------------------------------------ |
99-
| derived_from | URL to a STAC Item that was used as input data in the creation of this Item. |
100-
| processing-expression | A processing chain (or script) that describes how the data has been processed. |
97+
| Type | Description |
98+
| --------------------- | --------------------------------------------------------------------------------- |
99+
| derived_from | URL to a STAC Item that was used as input data in the creation of this Item. |
100+
| processing-expression | A processing chain (or script) that describes how the data has been processed. |
101+
| processing-execution | URL to any resource representing the processing execution (e.g. OGC Process API). |
101102

102103
## Contributing
103104

examples/item.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,14 @@
3535
"Sentinel-1 IPF": "002.71"
3636
}
3737
},
38-
"links": [],
38+
"links": [
39+
{
40+
"title": "GRD Post Processing (90AF)",
41+
"rel": "processing-execution",
42+
"href": "https://api.example.com/processing/s1-grd-l1c/jobs/90AF",
43+
"type": "application/json"
44+
}
45+
],
3946
"assets": {
4047
"manifest": {
4148
"type": "text/xml",

0 commit comments

Comments
 (0)