From 695c95d9dd619bbf625ee657437473501a02531b Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 7 Mar 2023 07:42:46 -0700 Subject: [PATCH] Use collection relation for links to collection --- ogcapi-features/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ogcapi-features/README.md b/ogcapi-features/README.md index 5d7a8ee3..d047d7c5 100644 --- a/ogcapi-features/README.md +++ b/ogcapi-features/README.md @@ -157,10 +157,10 @@ The following Link relations must exist in the Item object returned from the `/c | **rel** | **href** | **Media Type** | **From** | **Description** | | -------- | -------------------------------------------- | -------------------- | ------------------- | --------------------------------------------------- | | `root` | `/` | application/json | STAC API - Features | The root URI | -| `parent` | `/collections/{collectionId}` | application/json | OAFeat | Parent reference, usually the containing Collection | +| `collection` | `/collections/{collectionId}` | application/json | OAFeat | The containing Collection | | `self` | `/collections/{collectionId}/items/{itemId}` | application/geo+json | OAFeat | Self reference | -Note that the `parent` link for an Item should point to the containing Collection +Note that the `collection` link for an Item should point to the containing Collection (e.g., `/collections/{collectionId}`), rather than the API sub-path of `/collections/{collectionId}/items/`.