iNaturalist · Schema

PointGeoJson

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
type string
coordinates array an array of [long, lat]
View JSON Schema on GitHub

JSON Schema

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