Interface HonuaOgcRecordsResponse

Response from OGC API Records /collections/{catalogId}/items.

interface HonuaOgcRecordsResponse {
    features: HonuaOgcRecordResponse[];
    links?: HonuaOgcLink[];
    numberMatched?: number;
    numberReturned?: number;
    timeStamp?: string;
    type: "FeatureCollection";
}

Properties

links?: HonuaOgcLink[]
numberMatched?: number
numberReturned?: number
timeStamp?: string
type