{
  "title": "multipointGeometry",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "Contains an array of points, along with a spatial reference field.",
  "properties": {
    "hasM": {
      "type": "boolean",
      "description": "Indicates whether the geometry contains M coordinate values."
    },
    "hasZ": {
      "type": "boolean",
      "description": "Indicates whether the geometry contains Z coordinate values."
    },
    "points": {
      "type": "array",
      "description": "An array that corresponds to 2D and 3D points.",
      "items": {
        "type": "array",
        "items": {
          "type": "number"
        },
        "minItems": 2,
        "maxItems": 4
      }
    },
    "spatialReference": {
      "type": "object",
      "description": "The spatial reference can be defined using a well-known ID (WKID) or well-known text (WKT).",
      "$ref": "spatialReference_schema.json"
    }
  },
  "required": [
    "points"
  ],
  "additionalProperties": false,
  "esriDocumentation": {
    "examples": [
      {
        "title": "multipointGeometry",
        "code": {
          "geometry": {
            "points": [
              [
                -97.06138,
                32.837
              ],
              [
                -97.06133,
                32.836
              ],
              [
                -97.06124,
                32.834
              ],
              [
                -97.06127,
                32.832
              ]
            ],
            "spatialReference": {
              "wkid": 4326
            }
          }
        }
      }
    ]
  }
}
