OpenStreetMap · Schema

NoteCollection

GeospatialMappingOpen DataGeocodingEditing

Properties

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

JSON Schema

openstreetmap-notecollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NoteCollection",
  "title": "NoteCollection",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ]
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Note"
      }
    }
  }
}