Interface HonuaOgcCollectionMetadata

Response from a single OGC API collection (/ogc/features/collections/{id}).

interface HonuaOgcCollectionMetadata {
    cache?: HonuaCacheState;
    crs?: string[];
    description?: string;
    extent?: {
        spatial?: {
            bbox?: number[][];
            crs?: string;
        };
        temporal?: {
            interval?: (null | string)[][];
            trs?: string;
        };
    };
    id: string;
    itemType?: string;
    links?: HonuaOgcLink[];
    title?: string;
}

Hierarchy (view full)

Properties

crs?: string[]
description?: string
extent?: {
    spatial?: {
        bbox?: number[][];
        crs?: string;
    };
    temporal?: {
        interval?: (null | string)[][];
        trs?: string;
    };
}
id: string
itemType?: string
links?: HonuaOgcLink[]
title?: string