Skip to content

Commit 660262c

Browse files
Merge pull request #13 from stac-extensions/mah/remove_fields
remove tier_duration and archived fields
2 parents 2e27eb6 + ed26ce2 commit 660262c

File tree

2 files changed

+1
-27
lines changed

2 files changed

+1
-27
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,12 @@ with a STAC Item. This extension does not cover NFS solutions provided by PaaS
2121

2222
| Field Name | Type | Description |
2323
| ----------- | ------ | ----------- |
24-
| storage:min_tier_duration | integer | number of days for the shortest time tier restriction on access of an asset. |
25-
| storage:max_tier_duration | integer | number of days for the longest time tier restrictions on access of an asset. |
26-
| storage:archived | bool | descriptor for whether the data is "properly" archived according to implementers discretion |
2724
| storage:platform | string | The [cloud provider](#providers) where data is stored |
2825
| storage:region | string | The region where the data is stored. Relevant to speed of access and inter region egress costs (as defined by PaaS provider) |
2926
| storage:bucket | string | The bucket for the asset(s), used along with object path |
3027
| storage:object_path | string | The object_path for the asset, used along with bucket |
3128
| storage:requester_pays | bool | Is the data requester pays or is it data manager/cloud provider pays. *Defaults to false* |
3229
| storage:tier | string | The title for the tier type (as defined by PaaS provider) |
33-
| storage:tier_duration | integer | Minimum storage duration (in days) required before additional fees |
3430
| storage:first_byte_latency | string | approximate time unit (milliseconds, minutes or hours) for accessing first byte of data |
3531

3632
While these are all valid properties on an Item, they will typically be defined per-asset. If a field applies equally
@@ -77,8 +73,6 @@ Alibaba:
7773
- <https://www.alibabacloud.com/product/oss/pricing>
7874
- <https://www.alibabacloud.com/help/doc-detail/51374.htm>
7975

80-
All timestamps MUST be formatted according to [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6).
81-
8276
## Contributing
8377

8478
All contributions are subject to the

json-schema/schema.json

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -127,29 +127,9 @@
127127
"title": "Tier",
128128
"type": "string"
129129
},
130-
"storage:tier_duration": {
131-
"title": "Tier Duration",
132-
"type": "integer",
133-
"default": 0
134-
},
135130
"storage:first_byte_latency": {
136-
"title": "Tier",
131+
"title": "First Byte Latency",
137132
"type": "string"
138-
},
139-
"storage:min_tier_duration": {
140-
"title": "Minimum Duration for Tier",
141-
"type": "integer",
142-
"default": 0
143-
},
144-
"storage:max_tier_duration": {
145-
"title": "Maxiumum Duration for Tier",
146-
"type": "integer",
147-
"default": 0
148-
},
149-
"storage:archived": {
150-
"title": "Archived",
151-
"type": "boolean",
152-
"default": false
153133
}
154134
}
155135
}

0 commit comments

Comments
 (0)