An item from a Dataset.

interface DatasetItem<IdType extends DatasetItemId = DatasetItemId> {
    attributes: { readonly [key: string]: unknown };
    geometry?: any;
    id: IdType;
}

Type Parameters

Properties

attributes: { readonly [key: string]: unknown }

The attributes of the item. Note this may only be a subset of attributes depending on the query options.

geometry?: any

Item geometry, if available

id: IdType

Unique id of the item