{
    "type": "object",
    "properties": {
        "x": {
            "type": "number",
            "description": "The x coordinate of the location. When using the WGS84 spatial reference, this is the longitude in decimal degrees and the valid range is -180 to 180. Use the `wkid` parameter to choose a different spatial reference."
        },
        "y": {
            "type": "number",
            "description": "The y coordinate of the location. When using the WGS84 spatial reference, this is the latitude in decimal degrees and the valid range is -90 to 90. Use the `wkid` parameter to choose a different spatial reference."
        },
        "wkid": {
            "type": "integer",
            "description": "The well-known ID (WKID) of the spatial reference for the input coordinates. For example, use `3857` for the Web Mercator spatial reference. If not specified, the default is `4326`(WGS84).",
            "examples": [
                4326,
                3857
            ],
            "default": 4326
        }
    },
    "required": [
        "x",
        "y"
    ],
    "$schema": "https://json-schema.org/draft/2020-12/schema"
}