The geographic metadata of the file

interface FileGeoLocation {
    geometry: FileGeoLocationGeometry;
    properties?: {
        [key: string]: unknown;
    };
    type: "Feature";
}

Properties

Represents the points, curves and surfaces in the coordinate space

properties?: {
    [key: string]: unknown;
}

Additional properties in a String key -> Object value format

type: "Feature"

One of the GeoJSON types. Currently only the 'Feature' type is supported