ESRI ArcGIS · Schema

Point

GISGeospatialMappingLocationSpatial Analysis

Properties

Name Type Description
x number Longitude
y number Latitude
spatialReference object
View JSON Schema on GitHub

JSON Schema

esri-arcgis-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Point",
  "title": "Point",
  "type": "object",
  "properties": {
    "x": {
      "type": "number",
      "description": "Longitude"
    },
    "y": {
      "type": "number",
      "description": "Latitude"
    },
    "spatialReference": {
      "$ref": "#/components/schemas/SpatialReference"
    }
  }
}