Interface ZarrStoreRegistrationExperimental

Metadata returned by /api/v1/admin/zarr-stores.

interface ZarrStoreRegistration {
    bucket: string;
    createdAt: string;
    description: null | string;
    id: number;
    layerId: number;
    metadataScannedAt: null | string;
    name: string;
    primaryVariable: null | string;
    provider: ZarrStorageProvider;
    rootPath: string;
    srid: null | number;
    variableCount: null | number;
    variables: null | readonly ZarrVariableMetadata[];
    zarrFormat: null | 3 | 2;
}

Properties

bucket: string
createdAt: string
description: null | string
id: number
layerId: number
metadataScannedAt: null | string
name: string
primaryVariable: null | string
rootPath: string
srid: null | number
variableCount: null | number
variables: null | readonly ZarrVariableMetadata[]
zarrFormat: null | 3 | 2