This resource describes the feature collection
identified in the path. The response is the same as the Collections
API's response, but Collection ID returns the information for the
specified collection only.
Information about the feature collection with id
{collectionId} is provided. The response
contains: - Collection ID: A unique identifier for the spatial dataset.
- Title and Description: Optional details that describe the collection.
- Links: Navigational links to access the collection's items and schema endpoints using Collection ID.
Request format
https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/{collectionId}Request parameters
The request parameters are always sent as an HTTP query string. The following are sample specific table info request:
| Name | Type | Required | Description |
|---|---|---|---|
| collectionId * | string | Required |
Unique identifier of the collection. Example: |
Example
Request:
https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/pbb_usaResponse:
{
"id": "pbb_usa",
"title": "pbb_usa",
"description": "Building Objects",
"itemType": "feature",
"links": [
{
"href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/pbb_usa",
"rel": "self",
"type": "application/json",
"title": "This collection"
},
{
"href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/pbb_usa/items",
"rel": "items",
"type": "application/geo+json",
"title": "Access the features in the collection 'pbb_usa' as GeoJSON"
},
{
"href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/pbb_usa/schema",
"rel": "describedby",
"type": "application/schema+json",
"title": "Schema of features in 'pbb_usa'"
}
]
}