Skip to content

Commit 0c3eb03

Browse files
committed
fix: missing type for some examples
1 parent d725d6e commit 0c3eb03

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

collections/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ of an array of all STAC Collections and an array of Links.
7676
"id": "cool-data",
7777
"title": "Cool Data from X Satellite",
7878
"description": "A lot of awesome words describing the data",
79+
"type": "Collection",
7980
"license": "CC-BY",
8081
"extent": {
8182
"spatial": {

core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ the [overview](../overview.md#example-landing-page) document.
8181
"id": "example-stac",
8282
"title": "A simple STAC API Example",
8383
"description": "This Catalog aims to demonstrate the a simple landing page",
84+
"type": "Catalog",
8485
"conformsTo" : [
8586
"https://api.stacspec.org/v1.0.0-beta.4/core"
8687
],

fragments/filter/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ at least these values:
384384
],
385385
"stac_extensions": [],
386386
"stac_version": "1.0.0",
387+
"type": "Catalog",
387388
}
388389
```
389390

item-search/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ the [overview](../overview.md#example-landing-page) document.
255255
"id": "example-stac",
256256
"title": "A simple STAC API Example",
257257
"description": "This Catalog aims to demonstrate the a simple landing page",
258+
"type": "Catalog",
258259
"conformsTo" : [
259260
"https://api.stacspec.org/v1.0.0-beta.4/core",
260261
"https://api.stacspec.org/v1.0.0-beta.4/item-search"

ogcapi-features/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ the [overview](../overview.md#example-landing-page) document.
150150
"id": "example-stac",
151151
"title": "A simple STAC API Example",
152152
"description": "This Catalog aims to demonstrate the a simple landing page",
153+
"type": "Catalog",
153154
"conformsTo" : [
154155
"https://api.stacspec.org/v1.0.0-beta.4/core",
155156
"https://api.stacspec.org/v1.0.0-beta.4/ogcapi-features",

ogcapi-features/extensions/version/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ Request to `GET /collections/my_collection/items/this_is_my_id`:
6565
```json
6666
{
6767
"id": "this_is_my_id",
68+
"type": "Feature",
6869
"bbox": [],
6970
"geometry": {},
7071
"properties": {},
@@ -97,6 +98,7 @@ Request to `GET /collections/my_collection/items/this_is_my_id/versions/02`:
9798
```json
9899
{
99100
"id": "this_is_my_id",
101+
"type": "Feature",
100102
"bbox": [],
101103
"geometry": {},
102104
"properties": {},
@@ -129,6 +131,7 @@ Request to `GET /collections/my_collection/items/this_is_my_id/versions/01`:
129131
```json
130132
{
131133
"id": "this_is_my_id",
134+
"type": "Feature",
132135
"bbox": [],
133136
"geometry": {},
134137
"properties": {},

overview.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ The Landing Page will at least have the following `conformsTo` and `links`:
161161
"id": "example-stac",
162162
"title": "A simple STAC API Example",
163163
"description": "This Catalog aims to demonstrate the a simple landing page",
164+
"type": "Catalog",
164165
"conformsTo" : [
165166
"https://api.stacspec.org/v1.0.0-beta.4/core",
166167
"https://api.stacspec.org/v1.0.0-beta.4/item-search",

0 commit comments

Comments
 (0)