@maschinenlesbar.org/regionalatlas-cli
    Preparing search index...

    Interface RawCatalogIndicator

    One indicator entry in the raw services.json catalogue. years is a map from a 4-digit year string to per-year detail arrays; we only need its keys. attributes is the field dictionary — see RawCatalogAttribute.

    interface RawCatalogIndicator {
        attributes?: RawCatalogAttribute[];
        code: string;
        timestamp?: string;
        title_long?: string;
        title_short?: string;
        years?: Record<string, unknown>;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    attributes?: RawCatalogAttribute[]
    code: string
    timestamp?: string
    title_long?: string
    title_short?: string
    years?: Record<string, unknown>