Interface KeplerResultInputExperimental

Minimal structural view of a Honua Result — features plus optional schema.

interface KeplerResultInput {
    aggregateRows?: readonly Readonly<Record<string, unknown>>[];
    degraded?: readonly {
        capability: string;
        reason: string;
    }[];
    exceededTransferLimit?: boolean;
    features: readonly {
        attributes: Readonly<Record<string, unknown>>;
        geometry?: unknown;
    }[];
    fields?: readonly {
        alias?: string;
        name: string;
        type: string;
    }[];
}

Properties

aggregateRows?: readonly Readonly<Record<string, unknown>>[]
degraded?: readonly {
    capability: string;
    reason: string;
}[]
exceededTransferLimit?: boolean
features: readonly {
    attributes: Readonly<Record<string, unknown>>;
    geometry?: unknown;
}[]
fields?: readonly {
    alias?: string;
    name: string;
    type: string;
}[]