Interface HonuaOgcRecordResponse

A single OGC API Records record (GeoJSON Feature with record metadata).

interface HonuaOgcRecordResponse {
    geometry: null | GeoJsonGeometry;
    id?: string | number;
    links?: HonuaOgcLink[];
    properties: null | HonuaOgcRecordProperties;
    type: "Feature";
}

Hierarchy

Properties

geometry: null | GeoJsonGeometry
id?: string | number
links?: HonuaOgcLink[]
properties: null | HonuaOgcRecordProperties
type