iNaturalist · Schema

PolygonGeoJson

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
type string
coordinates array
View JSON Schema on GitHub

JSON Schema

polygongeojson.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PolygonGeoJson",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "coordinates": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "description": "an array of [long, lat]",
          "items": {
            "type": "number",
            "format": "double"
          }
        }
      }
    }
  }
}