Interface HonuaOgcRecordProperties

Core record metadata carried in an OGC API Records GeoJSON feature.

interface HonuaOgcRecordProperties {
    contacts?: readonly unknown[];
    created?: string;
    description?: string;
    externalIds?: readonly string[];
    formats?: readonly string[];
    keywords?: readonly string[];
    language?: string;
    languages?: readonly string[];
    license?: string;
    links?: HonuaOgcLink[];
    themes?: readonly unknown[];
    title?: string;
    type?: string;
    updated?: string;
}

Hierarchy

  • Record<string, unknown>
    • HonuaOgcRecordProperties

Properties

contacts?: readonly unknown[]
created?: string
description?: string
externalIds?: readonly string[]
formats?: readonly string[]
keywords?: readonly string[]
language?: string
languages?: readonly string[]
license?: string
links?: HonuaOgcLink[]
themes?: readonly unknown[]
title?: string
type?: string
updated?: string