Agromonitoring · Schema

PolygonCreateRequest

Request body for creating a new field polygon.

AgricultureSatellite ImageryVegetation IndicesWeatherPrecision AgricultureRemote Sensing

Properties

Name Type Description
name string Display name for the field.
geo_json object
View JSON Schema on GitHub

JSON Schema

agromonitoring-polygoncreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.agromonitoring.com/schemas/PolygonCreateRequest.json",
  "title": "PolygonCreateRequest",
  "type": "object",
  "description": "Request body for creating a new field polygon.",
  "required": [
    "name",
    "geo_json"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the field.",
      "example": "North Field"
    },
    "geo_json": {
      "$ref": "#/components/schemas/GeoJson"
    }
  }
}