interface FeatureType {
    externalId: string;
    id: number;
    properties: Properties & {
        createdTime: {
            type: "LONG";
        };
        externalId: {
            size: 32;
            type: "STRING";
        };
        lastUpdatedTime: {
            type: "LONG";
        };
    };
    searchSpec?: {
        createdTimeIdx: {
            properties: ["createdTime"];
        };
        externalIdIdx: {
            properties: ["externalId"];
        };
        lastUpdatedTimeIdx: {
            properties: ["lastUpdatedTime"];
        };
        [indexName: string]: GeospatialIndexSpec;
    };
}

Hierarchy (view full)

Properties

externalId: string
id: number
properties: Properties & {
    createdTime: {
        type: "LONG";
    };
    externalId: {
        size: 32;
        type: "STRING";
    };
    lastUpdatedTime: {
        type: "LONG";
    };
}
searchSpec?: {
    createdTimeIdx: {
        properties: ["createdTime"];
    };
    externalIdIdx: {
        properties: ["externalId"];
    };
    lastUpdatedTimeIdx: {
        properties: ["lastUpdatedTime"];
    };
    [indexName: string]: GeospatialIndexSpec;
}