Collections - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

This endpoint returns the list of feature collections available on the server. Each collection represents a spatial dataset that can be queried and provides essential metadata, including:

  • 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.

This resource is designed to help clients discover available geospatial datasets and understand the structure of each collection before making queries.

Request format

https://api.cloud.precisely.com/v1/ogcapi/enrich/collections

Request parameters

None

Example

Request:

https://api.cloud.precisely.com/v1/ogcapi/enrich/collections

Response:

{
    "links": [
        {
            "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections",
            "rel": "self",
            "type": "application/json",
            "title": "Information about the feature collections"
        },
        {
            "href": "https://www.precisely.com/legal/licensing/software-and-data-end-user-license-agreement",
            "rel": "license",
            "type": "text/html",
            "title": "Software and Data End User License Agreement"
        }
    ],
    "collections": [
        {
            "id": "hwr_usa_hurricanelines",
            "title": "hwr_usa_hurricanelines",
            "description": "Hurricane Path",
            "itemType": "feature",
            "links": [
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/hwr_usa_hurricanelines",
                    "rel": "self",
                    "type": "application/json",
                    "title": "This collection"
                },
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/hwr_usa_hurricanelines/items",
                    "rel": "items",
                    "type": "application/geo+json",
                    "title": "Access the features in the collection 'hwr_usa_hurricanelines' as GeoJSON"
                },
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/hwr_usa_hurricanelines/schema",
                    "rel": "describedby",
                    "type": "application/schema+json",
                    "title": "Schema of features in 'hwr_usa_hurricanelines'"
                }
            ]
        },
        {
            "id": "flr_usa_comm",
            "title": "flr_usa_comm",
            "description": "Community",
            "itemType": "feature",
            "links": [
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/flr_usa_comm",
                    "rel": "self",
                    "type": "application/json",
                    "title": "This collection"
                },
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/flr_usa_comm/items",
                    "rel": "items",
                    "type": "application/geo+json",
                    "title": "Access the features in the collection 'flr_usa_comm' as GeoJSON"
                },
                {
                    "href": "https://api.cloud.precisely.com/v1/ogcapi/enrich/collections/flr_usa_comm/schema",
                    "rel": "describedby",
                    "type": "application/schema+json",
                    "title": "Schema of features in 'flr_usa_comm'"
                }
            ]
        }
    ]
}