GeoJSON format
The plots endpoints supports full compatibility with the GeoJSON standard for representing geographic features. This enables easy integration with GIS tools and spatial data pipelines.
What is GeoJSON?
Supported GeoJSON Types
Content-Type and Accept Headers for GeoJSON
Plot as GeoJSON Feature
{
"type": "Feature",
"id": "UUID",
"geometry": {
"type": "Polygon",
"coordinates": [[[...]]] // Lng/Lat pairs in GeoJSON format
},
"properties": {
"name": "Plot A",
"commodity": "timber",
"createdAt": "2024-01-01T12:00:00Z",
"updatedAt": "2024-01-05T12:00:00Z",
"businessId": "business-uuid",
// ....additional properties
}
}Multiple Plots as FeatureCollection
Last updated