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
This extension allows to version STAC Collections and STAC Items. Therefore, it also allows to deprecate legacy versions.
12
14
Only fields and possible link relation types are defined in this extension,
@@ -33,6 +35,11 @@ The fields in the table below can be used in these parts of STAC documents:
33
35
| version | string | Version of the context this fields is used in (e.g. Asset or Collection). |
34
36
| deprecated | boolean | Specifies that the context this field is used in (e.g. Asset or Collection) is deprecated with the potential to be removed. Defaults to `false`. It should be transitioned out of usage as soon as possible and users should refrain from using it in new projects. A link with relation type `latest-version` SHOULD be added to the links and MUST refer to the resource that can be used instead. |
35
37
38
+
These fields have different meaning depending on where they are used. When used as an Item properties or top-level Collection field, they refer to
39
+
the version or deprecation of all data referenced in the Item or Collection, which may include the metadata itself.
40
+
When used in an Asset Object, they refer to the version or deprecation
41
+
of the particular data asset linked to in the Asset Object.
42
+
36
43
## Relation types
37
44
38
45
The following types should be used as applicable `rel` types for the
@@ -42,6 +49,38 @@ These are all following [RFC 5829](https://tools.ietf.org/html/rfc5829).
42
49
43
50
| Type | Description |
44
51
| ------------------- | ----------- |
45
-
| latest-version | This link points to a resource containing the latest (e.g., current) version. |
46
-
| predecessor-version | This link points to a resource containing the predecessor version in the version history. |
47
-
| successor-version | This link points to a resource containing the successor version in the version history. |
52
+
| latest-version | This link points to a STAC resource containing the latest (e.g., current) version. A maximum of one link can use this relation type per STAC resource. |
53
+
| predecessor-version | One or multiple links can point to STAC resources that are predecessor versions in the version history. |
54
+
| successor-version | One or multiple links can point to STAC resources that are successor versions in the version history. |
55
+
| version-history | This link points to a version history or changelog. This can be for example a Markdown file with the corresponding media type or a STAC Catalog or Collection. |
56
+
57
+
## Contributing
58
+
59
+
All contributions are subject to the
60
+
[STAC Specification Code of Conduct](https://github.com/radiantearth/stac-spec/blob/master/CODE_OF_CONDUCT.md).
0 commit comments