Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
    "spatialReference": {
        "wkid": 4326
    }, 
    "candidates": [
        {
            "address": "115  MAIN ST", 
            "location": {
                "y": 37.79152826999239, 
                "x": -122.39400753158013
            }, 
            "score": 100, 
            "attributes": {
                "base_address_num": 115, 
                "base_address_suffix": null, 
                "street_name": "MAIN", 
                "street_type": "ST", 
                "zipcode": "94105", 
                "parcels": [
                    {
                        "address_base_flg": true, 
                        "blk_lot": "3717012", 
                        "unit_num": null
                    }, 
                    {
                        "address_base_flg": true, 
                        "blk_lot": "3717013", 
                        "unit_num": null
                    }
                ], 
                "units": []
            }
        }
    ]
}
Field Definitions
spatialReferenceDefines the coordinate system for the specified coordinates. WKID 4326 refers to the geographic coordinate system (GCS) using datum WGS 1984 
candidatesMatched address(es) and their attributes
addressStreet address
locationA point within the parcel, not the centroid of the parcel
scoreSee below
attributesIndividual components of the matched address record
parcelsParcel(s) associated with the address match
address_base_flg 
blk_lot 
unit_numUnit number associated with this parcel, if present
units 
Scoring

If everything matches perfectly, you should get a score of 100. If you misspell the street name by 1 letter you get a score of 98.

...