Regrid API v1 Endpoints

lat-lon (reverse geocoding)

We recommend using lat-lon search if possible. Because parcels may span several addresses, using a third-party geocoder (eg Mapbox Places) to identify a point for an address and then searching for the parcel at that point can be more accurate than direct Parcel API address search.

HTTP API request general form

GET /api/v1/search.json?lat=<y>&lon=<x>&token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • lat: Latitude (y-coord) in decimal degrees, WGS84 (EPSG 4326) projection.
  • lon: Longitude (x-coord) in decimal degrees, WGS84 (EPSG 4326) projection.

To return all parcels in a radius of a point:

  • radius (optional, default: 50, Maximum: 32000): Give a radius in meters for which all Parcel Records will be returned if they are within a definable radius from the lat-lon point. No need to include the 'm' for meters, just the integer value between 0 and 32000.
  • limit (optional): Maximum number of Parcel Records to return.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Result fields

  • results: An array of GeoJSON Features each containing the matched Parcel Records. An empty results set with no error means no Parcel Records could be matched. Parcel attributes that have a null value are omitted from the results.

Example API request

GET https://app.regrid.com/api/v1/search.json?lat=42.36511&lon=-83.073107&radius=250&token=<token>
Example results:
  {
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
              "score": 1.0
          },
          "id": 364491
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0725089,
                          42.3659757
                      ],
                      [
                          -83.0736126,
                          42.3656277
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.0720491,
                          42.3651701
                      ],
                      [
                          -83.0725089,
                          42.3659757
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "435 Amsterdam St",
              "path": "/us/mi/wayne/detroit/390867",
              "fields": {
                  "ogc_fid": 390867,
                  "geoid": "26163",
                  "parcelnumb": "02001072-0",
                  "usecode": "22337",
                  "usedesc": "SCHOOL",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 2,
                  "yearbuilt": 1926,
                  "structstyle": "Schools - Vocational",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TEF FOUR LLC",
                  "mailadd": "40500 ANN ARBOR SUITE 200",
                  "mail_city": "PLYMOUTH",
                  "mail_state2": "MI",
                  "mail_zip": "48170",
                  "address": "435 AMSTERDAM ST",
                  "ll_bldg_footprint_sqft": 32346,
                  "ll_bldg_count": 2,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4100.0,
                  "lbcs_activity_desc": "School or library",
                  "lbcs_function": 6100.0,
                  "lbcs_function_desc": "Educational services",
                  "lbcs_structure": 4200.0,
                  "lbcs_structure_desc": "School or university buildings",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "435",
                  "saddstr": "AMSTERDAM",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "435 AMSTERDAM; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3407",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "S AMSTERDAM 48 E 10 FT 47 N 1/2 VAC ALLEY IN REAR MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 9-8 & N 1/2 VAC ALLEY IN REAR 7-1 & VAC ALLEY IN REAR BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 323.26 IRREG",
                  "lat": "42.365494",
                  "lon": "-83.072777",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.786,
                  "sqft": 77801.0,
                  "ll_gisacre": 1.78333,
                  "ll_gissqft": 77715,
                  "path": "/us/mi/wayne/detroit/390867",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "f5579168-fc31-4923-a535-b1419aa01aa3",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "NON-PROFIT",
                  "homestead_pre": 0,
                  "frontage": 323.0,
                  "depth": 241.0,
                  "total_floor_area": 80158.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "f5579168-fc31-4923-a535-b1419aa01aa3",
              "score": 0.606060606060606
          },
          "id": 390867
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.073714,
                          42.3655952
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0736126,
                          42.3656277
                      ],
                      [
                          -83.073714,
                          42.3655952
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "467 Amsterdam St",
              "path": "/us/mi/wayne/detroit/364482",
              "fields": {
                  "ogc_fid": 364482,
                  "geoid": "26163",
                  "parcelnumb": "02001073.001",
                  "usecode": "22256",
                  "usedesc": "PARKING LOT-GRAVEL",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 66000.0,
                  "saleprice": 650000.0,
                  "saledate": "2000-09-18",
                  "owner": "NEW AMSTERDAM PARKING LLC",
                  "mailadd": "39553 WOODWARD STE 150",
                  "mail_city": "BLOOMFIELD HILLS",
                  "mail_state2": "MI",
                  "mail_zip": "48304",
                  "address": "467 AMSTERDAM ST",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "467",
                  "saddstr": "AMSTERDAM",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "467 AMSTERDAM; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "S AMSTERDAM W 30 FT 47 W 30 FT OF N 10 FT OF & VAC ALLEY IN REAR MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 30 X 160",
                  "lat": "42.365409",
                  "lon": "-83.073545",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.11,
                  "sqft": 4800.0,
                  "ll_gisacre": 0.11028,
                  "ll_gissqft": 4806,
                  "path": "/us/mi/wayne/detroit/364482",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "746c3f60-be83-4f45-b240-77bfc0308841",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 30.0,
                  "depth": 160.0,
                  "taxable_value": 12683.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "746c3f60-be83-4f45-b240-77bfc0308841",
              "score": 0.547845142439737
          },
          "id": 364482
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0740292,
                          42.3650178
                      ],
                      [
                          -83.0739143,
                          42.3648162
                      ],
                      [
                          -83.073436,
                          42.3649664
                      ],
                      [
                          -83.0735509,
                          42.3651681
                      ],
                      [
                          -83.0740292,
                          42.3650178
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6136 2nd Ave",
              "path": "/us/mi/wayne/detroit/364473",
              "fields": {
                  "ogc_fid": 364473,
                  "geoid": "26163",
                  "parcelnumb": "02002435.001",
                  "usecode": "33450",
                  "usedesc": "POWER HOUSE,SWITCH, OR TRANSFORMER BUILDING",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1929,
                  "structstyle": "Industrial - Lofts",
                  "parvaltype": "ASSESSED",
                  "parval": 443600.0,
                  "saleprice": 0.0,
                  "owner": "DTE ELECTRIC COMPANY",
                  "mailadd": "P O BOX 33017",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48232",
                  "address": "6136 2ND AVE",
                  "ll_bldg_footprint_sqft": 6165,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4330.0,
                  "lbcs_activity_desc": "Power generation, control, monitor, or distribution",
                  "lbcs_function": 4310.0,
                  "lbcs_function_desc": "Electric power",
                  "lbcs_structure": 6000.0,
                  "lbcs_structure_desc": "Utility and other nonbuilding structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6136",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6136 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 41&42 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.364992",
                  "lon": "-83.073733",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.25698,
                  "ll_gissqft": 11199,
                  "path": "/us/mi/wayne/detroit/364473",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "dd4ad833-6173-4a36-b862-59135824e922",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 17880.0,
                  "taxable_value": 251216.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "dd4ad833-6173-4a36-b862-59135824e922",
              "score": 0.488758553274682
          },
          "id": 364473
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0739143,
                          42.3648162
                      ],
                      [
                          -83.0737994,
                          42.3646136
                      ],
                      [
                          -83.0733211,
                          42.3647639
                      ],
                      [
                          -83.073436,
                          42.3649664
                      ],
                      [
                          -83.0739143,
                          42.3648162
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6100 2nd Ave",
              "path": "/us/mi/wayne/detroit/364476",
              "fields": {
                  "ogc_fid": 364476,
                  "geoid": "26163",
                  "parcelnumb": "02002434.",
                  "usecode": "22750",
                  "usedesc": "OTHER COMMERCIAL STRUCTURE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 3,
                  "yearbuilt": 1922,
                  "structstyle": "Garages - Emergency Response, Staffed",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "DETROIT FIRE DEPARTMENT",
                  "owner2": "DFD E-17",
                  "mailadd": "1301 3RD ST, SUITE 707",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48226",
                  "address": "6100 2ND AVE",
                  "ll_bldg_footprint_sqft": 5137,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_structure": 2000.0,
                  "lbcs_structure_desc": "Commercial buildings and other specialized structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6100",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6100 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3404",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 39-40 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.364790",
                  "lon": "-83.073618",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.25796,
                  "ll_gissqft": 11242,
                  "path": "/us/mi/wayne/detroit/364476",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "89701680-d481-431c-8a7a-32d11c25551d",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "CITY OWNED",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 8491.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "89701680-d481-431c-8a7a-32d11c25551d",
              "score": 0.485044462409054
          },
          "id": 364476
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0741454,
                          42.3652204
                      ],
                      [
                          -83.0740292,
                          42.3650178
                      ],
                      [
                          -83.0735509,
                          42.3651681
                      ],
                      [
                          -83.0736671,
                          42.3653706
                      ],
                      [
                          -83.0741454,
                          42.3652204
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6134 2nd Ave",
              "path": "/us/mi/wayne/detroit/364469",
              "fields": {
                  "ogc_fid": 364469,
                  "geoid": "26163",
                  "parcelnumb": "02002435.002L",
                  "usecode": "22750",
                  "usedesc": "OTHER COMMERCIAL STRUCTURE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1929,
                  "structstyle": "Industrial - Lofts",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 2275000.0,
                  "saledate": "2001-10-01",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6134 2ND AVE",
                  "ll_bldg_footprint_sqft": 8528,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_structure": 2000.0,
                  "lbcs_structure_desc": "Commercial buildings and other specialized structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6134",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6134 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3404",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 43&44 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.365194",
                  "lon": "-83.073848",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.2584,
                  "ll_gissqft": 11261,
                  "path": "/us/mi/wayne/detroit/364469",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "bdd5f7fa-9e4a-4f9a-8d03-3405ce5b766b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 136.64,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 19952.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "bdd5f7fa-9e4a-4f9a-8d03-3405ce5b766b",
              "score": 0.450112528132033
          },
          "id": 364469
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0736971,
                          42.3644743
                      ],
                      [
                          -83.0732313,
                          42.3636649
                      ],
                      [
                          -83.0720744,
                          42.3640315
                      ],
                      [
                          -83.0724088,
                          42.3646053
                      ],
                      [
                          -83.0718204,
                          42.3647926
                      ],
                      [
                          -83.0719555,
                          42.3650318
                      ],
                      [
                          -83.0736971,
                          42.3644743
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6000 2nd Ave",
              "path": "/us/mi/wayne/detroit/364480",
              "fields": {
                  "ogc_fid": 364480,
                  "geoid": "26163",
                  "parcelnumb": "02002433.",
                  "usecode": "33170",
                  "usedesc": "LABORATORY/RESEARCH & DEVELOPMENT",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 4,
                  "yearbuilt": 2004,
                  "structstyle": "Laboratories",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 750000.0,
                  "saledate": "2003-10-14",
                  "owner": "WAYNE STATE UNIVERSITY",
                  "mailadd": "5700 CASS AVE SUTE 4900 A/B",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "6000 2ND AVE",
                  "ll_bldg_footprint_sqft": 42686,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_notes": "AA",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 3000.0,
                  "lbcs_activity_desc": "Industrial, manufacturing, and waste-related",
                  "lbcs_function": 2416.0,
                  "lbcs_function_desc": "Research and development services (scientific, etc.)",
                  "lbcs_structure": 2615.0,
                  "lbcs_structure_desc": "Laboratory or specialized industrial facility",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6000",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6000 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND LOTS 25 THRU 36 AND VAC ALLEYS ADJ MANDELBAUMS SUB L2 P8 PLATS W C R 2/62 ALSO LOTS 6,7,9,10,11 EXC E 12 FT & 8 EXC E 12 FT OF S 57.50 FT AND VAC ALLEYS ADJ BLK 11 CASS FARM CO LTD SUB L19 P35 PLATS W C R 2/27 124,045 SQ FT COMB 02001070. & 02002433 & PART 02001069. & 02002158. LK 12/26/03",
                  "lat": "42.364327",
                  "lon": "-83.072795",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 2.848,
                  "sqft": 124045.0,
                  "ll_gisacre": 2.8773,
                  "ll_gissqft": 125390,
                  "path": "/us/mi/wayne/detroit/364480",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "dc81dc64-e491-4261-a421-e0496e110730",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "EDUCATION/SCIENTIFIC",
                  "homestead_pre": 0,
                  "frontage": 320.0,
                  "depth": 140.0,
                  "total_floor_area": 48986.0,
                  "taxable_value": 0.0,
                  "landmap": "007",
                  "sale_numbe": 1,
                  "grantor": "NEXTENERGY CENTER",
                  "grantee": "THE BOARD OF GOVERNORS OF WAYNE STA",
                  "sale_terms": "NOT ARMS LENGTH",
                  "verified_b": "PTA",
                  "sale_instr": "PTA",
                  "sale_trans": "100.00",
                  "ecf": "CCSU"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "dc81dc64-e491-4261-a421-e0496e110730",
              "score": 0.392464678178964
          },
          "id": 364480
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0742035,
                          42.3653212
                      ],
                      [
                          -83.0741454,
                          42.3652204
                      ],
                      [
                          -83.0736671,
                          42.3653706
                      ],
                      [
                          -83.0737239,
                          42.3654714
                      ],
                      [
                          -83.0742035,
                          42.3653212
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6150 2nd Ave",
              "path": "/us/mi/wayne/detroit/364467",
              "fields": {
                  "ogc_fid": 364467,
                  "geoid": "26163",
                  "parcelnumb": "02002436.",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 381083.0,
                  "saledate": "2002-12-12",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6150 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6150",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6150 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 45 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 40 X 140",
                  "lat": "42.365346",
                  "lon": "-83.073935",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.129,
                  "sqft": 5600.0,
                  "ll_gisacre": 0.12861,
                  "ll_gissqft": 5605,
                  "path": "/us/mi/wayne/detroit/364467",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "12dd4d30-cf89-4e2d-aad3-2503edb4f799",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 40.0,
                  "depth": 140.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "12dd4d30-cf89-4e2d-aad3-2503edb4f799",
              "score": 0.358851674641148
          },
          "id": 364467
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0742603,
                          42.365422
                      ],
                      [
                          -83.0742035,
                          42.3653212
                      ],
                      [
                          -83.0737239,
                          42.3654714
                      ],
                      [
                          -83.073782,
                          42.3655723
                      ],
                      [
                          -83.0742603,
                          42.365422
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6156 2nd Ave",
              "path": "/us/mi/wayne/detroit/364466",
              "fields": {
                  "ogc_fid": 364466,
                  "geoid": "26163",
                  "parcelnumb": "02002437.",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 650000.0,
                  "saledate": "2000-09-01",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6156 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6156",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6156 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 46 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 40 X 140",
                  "lat": "42.365447",
                  "lon": "-83.073992",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.129,
                  "sqft": 5600.0,
                  "ll_gisacre": 0.12867,
                  "ll_gissqft": 5607,
                  "path": "/us/mi/wayne/detroit/364466",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "acea0d1c-50af-4c78-ad13-25b422623afc",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 40.0,
                  "depth": 140.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "acea0d1c-50af-4c78-ad13-25b422623afc",
              "score": 0.319761244937114
          },
          "id": 364466
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0724088,
                          42.3646053
                      ],
                      [
                          -83.0720744,
                          42.3640315
                      ],
                      [
                          -83.0714911,
                          42.3642151
                      ],
                      [
                          -83.0718204,
                          42.3647926
                      ],
                      [
                          -83.0724088,
                          42.3646053
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6001 Cass Ave",
              "path": "/us/mi/wayne/detroit/364514",
              "fields": {
                  "ogc_fid": 364514,
                  "geoid": "26163",
                  "parcelnumb": "02002158.",
                  "usecode": "00006",
                  "usedesc": "SPEC ACT LAND ONLY",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 416300.0,
                  "saleprice": 0.0,
                  "owner": "6001 CASS LLC",
                  "mailadd": "3011 W GRAND BLVD STE 2300",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "6001 CASS AVE",
                  "ll_bldg_footprint_sqft": 30798,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "saddno": "6001",
                  "saddstr": "CASS",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6001 CASS; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3423",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W CASS LOTS 5 THRU 1, E 12 FT OF S 57.50 FT OF 8 & E 12 FT OF 11 ALSO VAC ALLEYS ADJ BLK 11 CASS FARM CO LTD SUB L19 P35 PLATS W C R 2/27 39,813 SQ FT COMB OF PART OF ITEMS 02001069. & 02002158. LK 12/26/03",
                  "book": "2018202509",
                  "page": "2018202509",
                  "lat": "42.364412",
                  "lon": "-83.071949",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.914,
                  "sqft": 39813.0,
                  "ll_gisacre": 0.90124,
                  "ll_gissqft": 39275,
                  "path": "/us/mi/wayne/detroit/364514",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "3b1444d7-31ea-40f6-84a0-01b96da3b626",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 230.0,
                  "depth": 172.0,
                  "taxable_value": 416300.0,
                  "landmap": "007",
                  "related": "23031900.43F",
                  "sale_numbe": 1,
                  "grantor": "WAYNE STATE UNIVERSITY",
                  "grantee": "6001 CASS LLC",
                  "sale_terms": "VALID ARMS LENGTH",
                  "verified_b": "REG DEEDS",
                  "sale_instr": "WD",
                  "sale_trans": "100.00",
                  "ecf": "CCOB"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "3b1444d7-31ea-40f6-84a0-01b96da3b626",
              "score": 0.27122321670735
          },
          "id": 364514
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0748437,
                          42.3664669
                      ],
                      [
                          -83.074782,
                          42.3663606
                      ],
                      [
                          -83.0742715,
                          42.3665233
                      ],
                      [
                          -83.074038,
                          42.3661199
                      ],
                      [
                          -83.0740713,
                          42.3661094
                      ],
                      [
                          -83.0738354,
                          42.3657024
                      ],
                      [
                          -83.0731173,
                          42.3659273
                      ],
                      [
                          -83.0736694,
                          42.3668989
                      ],
                      [
                          -83.0748437,
                          42.3664669
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "450 Amsterdam St",
              "path": "/us/mi/wayne/detroit/364450",
              "fields": {
                  "ogc_fid": 364450,
                  "geoid": "26163",
                  "parcelnumb": "02001073.002L",
                  "usecode": "33010",
                  "usedesc": "LIGHT MANUFACTURING",
                  "zoning": "B4",
                  "zoning_description": "INDUSTRIAL",
                  "struct": true,
                  "structno": 3,
                  "yearbuilt": 1935,
                  "structstyle": "Industrial - Light Manufacturing",
                  "parvaltype": "ASSESSED",
                  "parval": 1894900.0,
                  "saleprice": 0.0,
                  "owner": "WESTCOTT PAPER PRO CO",
                  "mailadd": "450 AMSTERDAM ST",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3408",
                  "address": "450 AMSTERDAM ST",
                  "ll_bldg_footprint_sqft": 25442,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 3110.0,
                  "lbcs_activity_desc": "Primarily plant or factory-type",
                  "lbcs_function": 3000.0,
                  "lbcs_function_desc": "Manufacturing and wholesale trade",
                  "lbcs_structure": 2620.0,
                  "lbcs_structure_desc": "Heavy industrial structures and facilities",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "450",
                  "saddstr": "AMSTERDAM",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "450 AMSTERDAM; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3408",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N AMSTERDAM O L 116 LYG BETW MCRR R/W & AMSTERDAM AVE EXC E 165 FT ON S LINE BG E 161.35 FT ON N LINE SUB OF PT OF CASS FARM L1 P175-6 PLATS, W C R 2/103 60&59 50&49 AND E/W VAC ALLEY ADJ ALSO VAC BOSTON ST ADJ EXC S 23.53 FT OF W 160.05 FT ALSO S 170 FT OF E 10 FT EXC W 0.53 FT OF N 50.17 FT OF S 170 FT OF VAC ALLEY W & ADJ MANDELBAUMS SUB L2 P8 PLATS, W C R 2/62 375.17 IRREG",
                  "lat": "42.366308",
                  "lon": "-83.073803",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.952,
                  "sqft": 85015.0,
                  "ll_gisacre": 1.9497,
                  "ll_gissqft": 84966,
                  "path": "/us/mi/wayne/detroit/364450",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "9e200d78-5ba4-44ac-96ed-550fc3b66566",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "301",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 349.0,
                  "depth": 211.0,
                  "total_floor_area": 60608.0,
                  "taxable_value": 189073.0,
                  "landmap": "007",
                  "related": "VARIOUS"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "9e200d78-5ba4-44ac-96ed-550fc3b66566",
              "score": 0.264900662251656
          },
          "id": 364450
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.074782,
                          42.3663606
                      ],
                      [
                          -83.0743113,
                          42.3655512
                      ],
                      [
                          -83.0738354,
                          42.3657024
                      ],
                      [
                          -83.0740713,
                          42.3661094
                      ],
                      [
                          -83.074038,
                          42.3661199
                      ],
                      [
                          -83.0742715,
                          42.3665233
                      ],
                      [
                          -83.074782,
                          42.3663606
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6200 2nd Ave",
              "path": "/us/mi/wayne/detroit/364452",
              "fields": {
                  "ogc_fid": 364452,
                  "geoid": "26163",
                  "parcelnumb": "02002438.",
                  "usecode": "22440",
                  "usedesc": "MIXED USE-APT",
                  "zoning": "B4",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 8,
                  "yearbuilt": 1890,
                  "structstyle": "Apartment",
                  "parvaltype": "ASSESSED",
                  "parval": 2745400.0,
                  "saleprice": 650000.0,
                  "saledate": "2000-09-01",
                  "owner": "NEW AMSTERDAM ACTIVATION I LLC",
                  "mailadd": "39553 WOODWARD STE 150",
                  "mail_city": "BLOOMFIELD HILLS",
                  "mail_state2": "MI",
                  "mail_zip": "48304",
                  "address": "6200 2ND AVE",
                  "ll_bldg_footprint_sqft": 24984,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "Y",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 1100.0,
                  "lbcs_activity_desc": "Household",
                  "lbcs_function": 1100.0,
                  "lbcs_function_desc": "Private household",
                  "lbcs_structure": 1200.0,
                  "lbcs_structure_desc": "Multifamily structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6200",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6200 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3400",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 51 THRU 58 AND N 150 FT OF VAC ALLEY E & ADJ ALSO W 160.05 FT OF S 23.53 FT OF VAC BOSTON ST ALSO W 10 FT OF S 170 FT & W 0.53 FT OF E 10 FT OF N 50.17 FT OF S 170 FT OF VAC ALLEY E & ADJ MANDELBAUMS SUB L2 P8 PLATS, W C R 2/62 53,299 SQ FT",
                  "lat": "42.366041",
                  "lon": "-83.074304",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.224,
                  "sqft": 53299.0,
                  "ll_gisacre": 1.06906,
                  "ll_gissqft": 46589,
                  "path": "/us/mi/wayne/detroit/364452",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "92e99e71-9439-4cd2-9f03-341e99743a1d",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 343.0,
                  "depth": 155.0,
                  "total_floor_area": 65140.0,
                  "taxable_value": 562898.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "92e99e71-9439-4cd2-9f03-341e99743a1d",
              "score": 0.254129606099111
          },
          "id": 364452
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0736694,
                          42.3668989
                      ],
                      [
                          -83.0731173,
                          42.3659273
                      ],
                      [
                          -83.072555,
                          42.3661021
                      ],
                      [
                          -83.0730809,
                          42.3670333
                      ],
                      [
                          -83.0731348,
                          42.3670967
                      ],
                      [
                          -83.0736694,
                          42.3668989
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6241 Cass Ave",
              "path": "/us/mi/wayne/detroit/390907",
              "fields": {
                  "ogc_fid": 390907,
                  "geoid": "26163",
                  "parcelnumb": "02002155-7",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "B4",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 170000.0,
                  "saledate": "2014-11-10",
                  "owner": "WAYNE STATE UNIVERSITY",
                  "owner2": "CHIEF FINANCIAL OFFICER",
                  "mailadd": "5700 CASS AVE STE 4900",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3692",
                  "address": "6241 CASS AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_notes": "AA",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6241",
                  "saddstr": "CASS",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6241 CASS; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W CASS PART OF O L 116 DESC AS FOLS BEG AT A PTE IN W LINE CASS AVE 80 FT WD BG ALSO IN N LINE AMSTERDAM AVE 50 FT WD TH S 67D 01M 35S W 165 FT TH N 22D 43M 25S W 375.17 FT TH N 63D 29M 26S E 161.35 FT TH S 31D 09M 47S E 27.18 FT TH S 22D 43M 25S E 358.22 FT TO P O B SUB PT CASS FARM L1 P175-6 PLATS, W C R 2/103 385.40 IRREG",
                  "book": "51484-609",
                  "page": "51484-609",
                  "subdivision": "L1 P175-6",
                  "lat": "42.366508",
                  "lon": "-83.073114",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.476,
                  "sqft": 64275.0,
                  "ll_gisacre": 1.4758,
                  "ll_gissqft": 64314,
                  "path": "/us/mi/wayne/detroit/390907",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "434491c3-c0b3-4b5d-b776-ec77b5ec86f1",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "EDUCATION/SCIENTIFIC",
                  "homestead_pre": 0,
                  "frontage": 0.0,
                  "depth": 0.0,
                  "taxable_value": 0.0,
                  "landmap": "007",
                  "sale_numbe": 1,
                  "grantor": "MOTORS LIQUIDATION COMPANY",
                  "grantee": "RACER PROPERTIES LLC",
                  "sale_terms": "NO CONSIDERATION",
                  "verified_b": "PTA",
                  "sale_instr": "PTA",
                  "sale_trans": "0.00",
                  "ecf": "CCPKL"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "434491c3-c0b3-4b5d-b776-ec77b5ec86f1",
              "score": 0.249086682165394
          },
          "id": 390907
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0717614,
                          42.3652129
                      ],
                      [
                          -83.0705701,
                          42.365688
                      ],
                      [
                          -83.0707916,
                          42.3660279
                      ],
                      [
                          -83.0712466,
                          42.3658414
                      ],
                      [
                          -83.0712079,
                          42.3657895
                      ],
                      [
                          -83.0714135,
                          42.3657053
                      ],
                      [
                          -83.0714521,
                          42.3657571
                      ],
                      [
                          -83.0719479,
                          42.3655539
                      ],
                      [
                          -83.0717614,
                          42.3652129
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6101 Woodward Ave",
              "path": "/us/mi/wayne/detroit/390881",
              "fields": {
                  "ogc_fid": 390881,
                  "geoid": "26163",
                  "parcelnumb": "02001752-3",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "WAYNE STATE UNIVERSITY",
                  "mailadd": "5700 CASS AVE SUITE 4900",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3692",
                  "address": "6101 WOODWARD AVE",
                  "ll_bldg_footprint_sqft": 41300,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6101",
                  "saddstr": "WOODWARD",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6101 WOODWARD AVENUE; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W WOODWARD PT OF LOT 3 PLAT OF PARK LOTS 47 & 48 L1 P64 PLATS, W C R 2/77 DESC AS: COMM N LINE OF BURROUGHS AVE (50 FT WD) & E LINE OF CASS AVE (80 FT WD) TH N 22D 57M 17S W 134.11 FT; TH N 60D 11M 17S E 153.08 FT; TH S 29 48M 45S E 21.59 FT; TH N 60D 11M 15S E 63.47 FT; TH N 29D 48M 45S W 21.59 FT; TH N 60D 11M 15S E 140.47 FT; TH S 26D 40M 48S E 137.56 FT; TH S 60D 50M 48S W 365.54 TO POB 1.077 ACRES, SPLIT/COMBINED ON 10/02/2017 FROM 02001752., 02001753., 02002149.;, ",
                  "lat": "42.365617",
                  "lon": "-83.071262",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.077,
                  "sqft": 46914.12,
                  "ll_gisacre": 1.09042,
                  "ll_gissqft": 47519,
                  "path": "/us/mi/wayne/detroit/390881",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "42c74a8f-0729-474f-8588-630353c980c7",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "taxable_status": "EDUCATION/SCIENTIFIC",
                  "homestead_pre": 0,
                  "frontage": 137.56,
                  "depth": 341.045,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "42c74a8f-0729-474f-8588-630353c980c7",
              "score": 0.21997360316762
          },
          "id": 390881
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0719479,
                          42.3655539
                      ],
                      [
                          -83.0714521,
                          42.3657571
                      ],
                      [
                          -83.0714135,
                          42.3657053
                      ],
                      [
                          -83.0712065,
                          42.3657877
                      ],
                      [
                          -83.0712466,
                          42.3658414
                      ],
                      [
                          -83.0707916,
                          42.3660279
                      ],
                      [
                          -83.0710525,
                          42.366424
                      ],
                      [
                          -83.0722292,
                          42.366063
                      ],
                      [
                          -83.0719479,
                          42.3655539
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6131 Woodward Ave",
              "path": "/us/mi/wayne/detroit/390904",
              "fields": {
                  "ogc_fid": 390904,
                  "geoid": "26163",
                  "parcelnumb": "02002149-0",
                  "usecode": "22337",
                  "usedesc": "SCHOOL",
                  "zoning": "SD2",
                  "zoning_description": "CONDO PARENT",
                  "struct": true,
                  "structno": 2,
                  "yearbuilt": 1927,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "WAYNE STATE UNIVERSITY",
                  "mailadd": "5700 CASS AVE SUITE 4900",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3692",
                  "address": "6131 WOODWARD AVE",
                  "ll_bldg_footprint_sqft": 37405,
                  "ll_bldg_count": 2,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4100.0,
                  "lbcs_activity_desc": "School or library",
                  "lbcs_function": 6100.0,
                  "lbcs_function_desc": "Educational services",
                  "lbcs_structure": 4200.0,
                  "lbcs_structure_desc": "School or university buildings",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6131",
                  "saddstr": "WOODWARD",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6131 WOODWARD AVENUE; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W WOODWARD PT OF LOTS 1 THRU 3 PLAT OF PARK LOTS 47 & 48 L1 P64 PLATS, W C R 2/77 DESC AS: COMM N LINE OF BURROUGHS AVE (50 FT WD) & E LINE OF CASS AVE (80 FT WD) TH N 22D 57M 17S W 134.11 FT TO POB; TH N 22D 57M 17S W 200.49 FT; TH N 66D 51M 07S E 344.11 FT; TH S 26D 40M 48S E 159.36 FT;TH S 60D 11M 15S W 140.47 FT; TH S 29D 48M 45S E 21.59 FT; TH S 60D 11M 15S W 63.47 FT; N 29D 48M 45S W 21.59 FT; TH S 60D 11M 15S W 153.09 FT TO POB 1.48 ACRES, SPLIT/COMBINED ON 10/02/2017 FROM 02001752., 02001753., 02002149.;, SPLIT ON 10/02/2017 INTO 02002149.001, 02002149.002;, ",
                  "lat": "42.366003",
                  "lon": "-83.071522",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.475,
                  "sqft": 64269.0,
                  "ll_gisacre": 1.48094,
                  "ll_gissqft": 64538,
                  "path": "/us/mi/wayne/detroit/390904",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "fb3c5cdd-b3f4-4918-93eb-597bc09e9c92",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "483",
                  "ward": "2",
                  "taxable_status": "ASSESSED WITH OTHERS",
                  "homestead_pre": 0,
                  "frontage": 159.36,
                  "depth": 404.548,
                  "total_floor_area": 158104.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "fb3c5cdd-b3f4-4918-93eb-597bc09e9c92",
              "score": 0.219138056975895
          },
          "id": 390904
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0722292,
                          42.366063
                      ],
                      [
                          -83.0719479,
                          42.3655539
                      ],
                      [
                          -83.0714521,
                          42.3657571
                      ],
                      [
                          -83.0714135,
                          42.3657053
                      ],
                      [
                          -83.0712832,
                          42.3657587
                      ],
                      [
                          -83.0715658,
                          42.3662665
                      ],
                      [
                          -83.0722292,
                          42.366063
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6131 Woodward Avenue 1",
              "path": "/us/mi/wayne/detroit/390905",
              "fields": {
                  "ogc_fid": 390905,
                  "geoid": "26163",
                  "parcelnumb": "02002149.001",
                  "usecode": "22337",
                  "usedesc": "SCHOOL",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL CONDOS",
                  "struct": true,
                  "structno": 2,
                  "yearbuilt": 1927,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "WAYNE STATE UNIVERSITY",
                  "mailadd": "5700 CASS AVE SUITE 4900",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3692",
                  "address": "6131 WOODWARD AVENUE 1",
                  "ll_bldg_footprint_sqft": 35754,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_notes": "A1",
                  "dpv_type": " ",
                  "cass_errorno": "4.1,12.3,12.4,14.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4100.0,
                  "lbcs_activity_desc": "School or library",
                  "lbcs_function": 6100.0,
                  "lbcs_function_desc": "Educational services",
                  "lbcs_structure": 4200.0,
                  "lbcs_structure_desc": "School or university buildings",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6131",
                  "saddstr": "WOODWARD AVENUE 1",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6131 WOODWARD AVENUE 1; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W WOODWARD WAYNE COUNTY CONDO PLAN NO 1034 UNIT #1 \"INTEGRATIVE BIOSCIENCES CENTER (WSU) CONDOMINIUM RECORDED L52349 PAGE 1257 DEEDS WCR 56.42%, SPLIT/COMBINED ON 10/02/2017 FROM 02002149-0;, ",
                  "lat": "42.365918",
                  "lon": "-83.071761",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.475,
                  "sqft": 64269.0,
                  "ll_gisacre": 0.86518,
                  "ll_gissqft": 37704,
                  "path": "/us/mi/wayne/detroit/390905",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "1be5f547-a666-4287-aae2-7f29640382d4",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "203",
                  "ward": "2",
                  "taxable_status": "EDUCATION/SCIENTIFIC",
                  "homestead_pre": 0,
                  "frontage": 159.36,
                  "depth": 404.548,
                  "total_floor_area": 158104.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "1be5f547-a666-4287-aae2-7f29640382d4",
              "score": 0.219138056975895
          },
          "id": 390905
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0716877,
                          42.3650752
                      ],
                      [
                          -83.0715469,
                          42.3648213
                      ],
                      [
                          -83.0711579,
                          42.3649872
                      ],
                      [
                          -83.0713037,
                          42.3652392
                      ],
                      [
                          -83.0716877,
                          42.3650752
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6050 Cass Ave",
              "path": "/us/mi/wayne/detroit/364529",
              "fields": {
                  "ogc_fid": 364529,
                  "geoid": "26163",
                  "parcelnumb": "02002148.",
                  "usecode": "22330",
                  "usedesc": "OFFICE BLDG--3 STORIES OR LESS",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 3,
                  "yearbuilt": 1925,
                  "structstyle": "Garages - Storage",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 465000.0,
                  "saledate": "1990-06-01",
                  "owner": "WAYNE STATE UNIVERSITY",
                  "mailadd": "5700 CASS AVE SUITE 4900",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "6050 CASS AVE",
                  "ll_bldg_footprint_sqft": 11135,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NY",
                  "dpv_notes": "AABB05",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6050",
                  "saddstr": "CASS",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6050 CASS; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3424",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E CASS N 100 FT OF W 150 FT OF 4 LYG E OF & ADJ CASS AVE S OF & ADJ BURROUGHS AVE PLAT OF PARK LOTS 47 & 48 L1 P64 PLATS, W C R 2/77 100 X 150",
                  "lat": "42.365030",
                  "lon": "-83.071424",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.344,
                  "sqft": 15000.0,
                  "ll_gisacre": 0.27436,
                  "ll_gissqft": 11956,
                  "path": "/us/mi/wayne/detroit/364529",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "70ecc792-7764-4d60-96ae-c8c5af751cca",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "EDUCATION/SCIENTIFIC",
                  "homestead_pre": 0,
                  "frontage": 100.0,
                  "depth": 150.0,
                  "total_floor_area": 30353.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "70ecc792-7764-4d60-96ae-c8c5af751cca",
              "score": 0.205268559698939
          },
          "id": 364529
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0745543,
                          42.3649208
                      ],
                      [
                          -83.0746992,
                          42.3648755
                      ],
                      [
                          -83.0748848,
                          42.3651981
                      ],
                      [
                          -83.075113,
                          42.365126
                      ],
                      [
                          -83.0747594,
                          42.3645116
                      ],
                      [
                          -83.0746572,
                          42.3645436
                      ],
                      [
                          -83.074629,
                          42.3644945
                      ],
                      [
                          -83.0743581,
                          42.3645792
                      ],
                      [
                          -83.0745543,
                          42.3649208
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6101 2nd Ave",
              "path": "/us/mi/wayne/detroit/391045",
              "fields": {
                  "ogc_fid": 391045,
                  "geoid": "26163",
                  "parcelnumb": "04003440.002",
                  "usecode": "00004",
                  "usedesc": "VACANT COMMERCIAL",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 256200.0,
                  "saleprice": 0.0,
                  "owner": "NEW AMSTERDAM PARKING LLC",
                  "mailadd": "39533 WOODWARD STE #310",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48304",
                  "address": "6101 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "saddno": "6101",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6101 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W SECOND --- PT OF LOTS 10 THRU 15 BLKS 14 CASS FARM CO LTD SUB OF BLKS L19 P35 PLATS, W C R DESC AS: COMM AT THE INTERSECTION OF W LINE SECOND AVE (150 FT WD) & S LINE OF AMSTERDAM ST (50 FT WD) TH S 23D 56M 53S E 128 FT TO POB; TH S 23D 56M 53S E 135.31 FT; TH S 65D 51M 59S W 79.45 FT; TH N 23M 56M 53S W 19.44; TH S 65D 51M 59S W 29.99 FT; TH N 23D 56M 53S W 243.87 FT; TH N 65D 51M 59S E 66.94 FT; TH S 23D 56M 53S E 128 FT; TH N 65D 51M 59S E 42.5 FT TO POB --- .523 ACRES, SPLIT/COMBINED ON 03/20/2017 FROM 04003206., 04003440., 04003441.;INTO 04003440-1, SPLIT/COMBINED ON 11/28/2017 FROM 04003440-1;, ",
                  "book": "2018007594",
                  "page": "2018007594",
                  "lat": "42.364813",
                  "lon": "-83.074740",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.523,
                  "sqft": 22794.0,
                  "ll_gisacre": 0.52291,
                  "ll_gissqft": 22788,
                  "path": "/us/mi/wayne/detroit/391045",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "78ce4357-54c1-4134-97b1-71155fcfee6a",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "4",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 0.0,
                  "depth": 0.0,
                  "taxable_value": 256200.0,
                  "landmap": "007",
                  "sale_numbe": 1,
                  "grantor": "HENRY FORD HEALTH SYSTEM",
                  "grantee": "NEW AMSTERDAM PARKING LLC",
                  "sale_terms": "MULTI PARCEL INVALID",
                  "verified_b": "PTA",
                  "sale_instr": "CD",
                  "sale_trans": "100.00",
                  "ecf": "CCOB"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "78ce4357-54c1-4134-97b1-71155fcfee6a",
              "score": 0.2028671896132
          },
          "id": 391045
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0743581,
                          42.3645792
                      ],
                      [
                          -83.074629,
                          42.3644945
                      ],
                      [
                          -83.0746572,
                          42.3645436
                      ],
                      [
                          -83.0747594,
                          42.3645116
                      ],
                      [
                          -83.075113,
                          42.365126
                      ],
                      [
                          -83.0767446,
                          42.364611
                      ],
                      [
                          -83.0766367,
                          42.3643057
                      ],
                      [
                          -83.0763023,
                          42.3635534
                      ],
                      [
                          -83.075833,
                          42.3627507
                      ],
                      [
                          -83.073693,
                          42.36342
                      ],
                      [
                          -83.0743581,
                          42.3645792
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6005 2nd Ave",
              "path": "/us/mi/wayne/detroit/391046",
              "fields": {
                  "ogc_fid": 391046,
                  "geoid": "26163",
                  "parcelnumb": "04003440.003",
                  "usecode": "22310",
                  "usedesc": "HEALTH PROFESSIONAL OFFICE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 3,
                  "yearbuilt": 1971,
                  "structstyle": "Medical - Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "HFHS/CORP PROPERTY SERVICES",
                  "mailadd": "1 FORD PL STE 4AB",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202-3450",
                  "address": "6005 2ND AVE",
                  "ll_bldg_footprint_sqft": 131059,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4500.0,
                  "lbcs_activity_desc": "Health care, medical, or treatment",
                  "lbcs_function": 6500.0,
                  "lbcs_function_desc": "Health and human services",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6005",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6005 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E THIRDS --- LOTS 1 THRU 9; LOTS 16 THRU 25; PT OF LOTS 10 THRU 15 BLKS 14 & LOTS 1 THRU 25 BLK 15 CASS FARM CO LTD SUB OF BLKS L19 P35 PLATS, W C R; INCL THAT PT OF VAC YORK ST (60 FT WD) & THAT PT OF VAC VIENNA AVE (50 FT WD) & ALL VAC ALLEYS WITHIN DESC AREA: COMM AT THE INTERSECTION OF W LINE SECOND AVE (150 FT WD) & S LINE OF AMSTERDAM ST (50 FT WD) TH S 23D 56M 53S E 263.31 FT TO POB; TH S 23D 56M 53S E 456.57 FT; TH S 65D 53M 36S W 627.7 FT; TH ALG CURVE TO R 159.62 FT, RAD 1873 FT DELTA 4D 52M 59S, CH N 26D 03M 25S W 159.58 FT; TH N 23D 37M 16S W 293.79 FT; TH ALG CURVE TO R 133.01 FT, RAD 703 FT DELTA 10D 50M 27S, CH N 18D 12M 02S W 132.82 FT; TH N 12D 46M 49S W 136.88 FT; TH N 65D 51M 59S E 482.62 FT; TH S 23D 56M 53S E 243.87 FT; TH N 65D 51M 59S E 29.99 FT; TH S 23D 56M 53S E 19.44 FT; TH N 65D 51M 59S E 79.45 FT TO POB ---9.7 ACRES, SPLIT/COMBINED ON 03/20/2017 FROM 04003206., 04003440., 04003441.;INTO 04003440-1, SPLIT/COMBINED ON 11/28/2017 FROM 04003440-1;, ",
                  "lat": "42.363933",
                  "lon": "-83.075302",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 9.7,
                  "sqft": 422532.0,
                  "ll_gisacre": 9.60422,
                  "ll_gissqft": 418542,
                  "path": "/us/mi/wayne/detroit/391046",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "a4b5a050-1296-41dc-81da-3f0b68cb771a",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 489.92,
                  "property_class": "201",
                  "ward": "4",
                  "taxable_status": "NON-PROFIT",
                  "homestead_pre": 0,
                  "frontage": 0.0,
                  "depth": 0.0,
                  "total_floor_area": 593372.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "a4b5a050-1296-41dc-81da-3f0b68cb771a",
              "score": 0.201328769881216
          },
          "id": 391046
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0747398,
                          42.3652439
                      ],
                      [
                          -83.0748848,
                          42.3651981
                      ],
                      [
                          -83.0746992,
                          42.3648755
                      ],
                      [
                          -83.0745543,
                          42.3649208
                      ],
                      [
                          -83.0747398,
                          42.3652439
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6155 2nd Ave",
              "path": "/us/mi/wayne/detroit/391044",
              "fields": {
                  "ogc_fid": 391044,
                  "geoid": "26163",
                  "parcelnumb": "04003440.001",
                  "usecode": "00004",
                  "usedesc": "VACANT COMMERCIAL",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 73600.0,
                  "saleprice": 0.0,
                  "owner": "NEW AMSTERDAM PARKING LLC",
                  "mailadd": "39533 WOODWARD STE #310",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48304",
                  "address": "6155 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "saddno": "6155",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6155 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "W SECOND --- PT OF LOTS 10 THRU 12 BLKS 14 CASS FARM CO LTD SUB OF BLKS L19 P35 PLATS, W C R DESC AS: COMM AT THE INTERSECTION OF W LINE SECOND AVE (150 FT WD) & S LINE OF AMSTERDAM ST (50 FT WD) TH S 23D 56M 53S E 128 FT; TH S 65D 51M 59S W 42.5 FT; TH N 23D 56M 53S W 128 FT; TH N 65M 51M 59S E 42.5 FT TO POB --- .125 ACRES, SPLIT/COMBINED ON 03/20/2017 04003206., 04003440., 04003441.; INTO 04003440-1, SPLIT/COMBINED ON 11/28/2017 FROM 04003440-1;, ",
                  "book": "2018007594",
                  "page": "2018007594",
                  "lat": "42.365060",
                  "lon": "-83.074720",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.125,
                  "sqft": 5440.0,
                  "ll_gisacre": 0.12486,
                  "ll_gissqft": 5441,
                  "path": "/us/mi/wayne/detroit/391044",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "95c21d44-eedb-4bd8-96fd-cf8482a04187",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "4",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 0.0,
                  "depth": 0.0,
                  "taxable_value": 73600.0,
                  "landmap": "007",
                  "sale_numbe": 1,
                  "grantor": "HENRY FORD HEALTH SYSTEM",
                  "grantee": "NEW AMSTERDAM PARKING LLC",
                  "sale_terms": "MULTI PARCEL INVALID",
                  "verified_b": "PTA",
                  "sale_instr": "CD",
                  "sale_trans": "100.00",
                  "ecf": "CCOB"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "95c21d44-eedb-4bd8-96fd-cf8482a04187",
              "score": 0.199362041467305
          },
          "id": 391044
      }
  ]
}
  

This endpoint allows you to search for parcels by specifying an address as a query string.

HTTP API request general form

GET /api/v1/search.json?query=<address>&context=<path>&token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • query: The URL Encoded address to look up.
  • context (optional): See notes on context parameter above.
  • limit (optional, default: 20): Maximum number of Parcel Records to return.
  • strict (optional): Set strict=1 to only return Parcel Records in the context.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Response fields

  • results: An array of GeoJSON Features sorted by descending relevance rank containing the matched Parcel Records. An empty results set with no error means no Parcel Records could be matched. Parcel attributes that have a null value are omitted from the results.

Example request

GET https://app.regrid.com/api/v1/search.json?query=440%20burroughs&context=/us/mi/wayne/detroit&strict=1&limit=15&token=<token>
Example results:
  {
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
              "score": 1.0
          },
          "id": 364491
      }
  ]
}
  

Parcel Id queries return the Parcel Record whose assessor-assigned Parcel Id (also known as Parcel Identification Number (PIN) or Assessor's Parcel Number (APN)) matches the given parameter.

HTTP API request general form

GET /api/v1/search.json?parcelnumb=<pin>&token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • parcelnumb: The assessor's parcel number to look up. Non-alphanumeric characters will be removed when searching.
  • context (optional): See notes on context parameter above.
  • limit (optional, default: 20): Maximum number of Parcel Records to return.
  • strict (optional): Set strict=1 to only return Parcel Records in the context.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Response fields

  • results: An array of GeoJSON Features sorted by descending relevance rank containing the matched Parcel Records. An empty results set with no error means no Parcel Records could be matched. Parcel attributes that have a null value are omitted from the results.

Example request

GET https://app.regrid.com/api/v1/search.json?parcelnumb=02001069-71&context=/us/mi/wayne/detroit&strict=1&limit=15&token=<token>
Example results:
  {
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
              "score": 1.0
          },
          "id": 364491
      }
  ]
}
  

HTTP API request

POST or GET /api/v1/area.json

Query parameters

  • token: Your Regrid assigned authorization token.
  • geojson: The polygon's GeoJSON geometry (the area being searched), the polygon can not be larger than 80 sq miles.
  • limit: (optional, default: 20, Maximum: 1000) Limits the number of Parcel Records returned per page of results.
  • page: (optional, default: 1) Specifies which 'page' of results to return. A polygon based search may find several thousand parcels, the API divides them up into 'pages' based on the limit value set. You must request each page individually, page 1 is returned by default.
  • count: (optional) When set to true the request will only return the total count of parcels within the area, not the Parcel Records themselves.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Response fields

  • results: An array of GeoJSON Features containing the found Parcel Records. An empty results set with no error means no Parcel Records could be found. Parcel attributes that have a null value are omitted from the results.
  • count: Total number of parcels within the polygon.
  • area: Total area of the searched polygon (in acres, sq_meters, and sq_miles).
  • status: Whether the request succeeded or failed.

Example request

POST /api/v1/area.json
  {
    "token": "my_token",
    "geojson": {"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-83.074472,42.365423],[-83.073946,42.364478],[-83.071878,42.365108],[-83.072403,42.366061],[-83.074472,42.365423]]]}},
    "limit": 50,
    "page": 1
  }
Example response:
  {
  "status": "ok",
  "count": 8,
  "area": {
      "acres": 5.18347420691614,
      "sq_meters": 20976.7757684935,
      "sq_miles": 0.00809917844830647
  },
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0742603,
                          42.365422
                      ],
                      [
                          -83.0742035,
                          42.3653212
                      ],
                      [
                          -83.0737239,
                          42.3654714
                      ],
                      [
                          -83.073782,
                          42.3655723
                      ],
                      [
                          -83.0742603,
                          42.365422
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6156 2nd Ave",
              "path": "/us/mi/wayne/detroit/364466",
              "fields": {
                  "ogc_fid": 364466,
                  "geoid": "26163",
                  "parcelnumb": "02002437.",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 650000.0,
                  "saledate": "2000-09-01",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6156 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6156",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6156 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 46 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 40 X 140",
                  "lat": "42.365447",
                  "lon": "-83.073992",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.129,
                  "sqft": 5600.0,
                  "ll_gisacre": 0.12867,
                  "ll_gissqft": 5607,
                  "path": "/us/mi/wayne/detroit/364466",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "acea0d1c-50af-4c78-ad13-25b422623afc",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 40.0,
                  "depth": 140.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "acea0d1c-50af-4c78-ad13-25b422623afc"
          },
          "id": 364466
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0742035,
                          42.3653212
                      ],
                      [
                          -83.0741454,
                          42.3652204
                      ],
                      [
                          -83.0736671,
                          42.3653706
                      ],
                      [
                          -83.0737239,
                          42.3654714
                      ],
                      [
                          -83.0742035,
                          42.3653212
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6150 2nd Ave",
              "path": "/us/mi/wayne/detroit/364467",
              "fields": {
                  "ogc_fid": 364467,
                  "geoid": "26163",
                  "parcelnumb": "02002436.",
                  "usecode": "22255",
                  "usedesc": "PARKING LOT-PAVED",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 381083.0,
                  "saledate": "2002-12-12",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6150 2ND AVE",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6150",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6150 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 45 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 40 X 140",
                  "lat": "42.365346",
                  "lon": "-83.073935",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.129,
                  "sqft": 5600.0,
                  "ll_gisacre": 0.12861,
                  "ll_gissqft": 5605,
                  "path": "/us/mi/wayne/detroit/364467",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "12dd4d30-cf89-4e2d-aad3-2503edb4f799",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 40.0,
                  "depth": 140.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "12dd4d30-cf89-4e2d-aad3-2503edb4f799"
          },
          "id": 364467
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0741454,
                          42.3652204
                      ],
                      [
                          -83.0740292,
                          42.3650178
                      ],
                      [
                          -83.0735509,
                          42.3651681
                      ],
                      [
                          -83.0736671,
                          42.3653706
                      ],
                      [
                          -83.0741454,
                          42.3652204
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6134 2nd Ave",
              "path": "/us/mi/wayne/detroit/364469",
              "fields": {
                  "ogc_fid": 364469,
                  "geoid": "26163",
                  "parcelnumb": "02002435.002L",
                  "usecode": "22750",
                  "usedesc": "OTHER COMMERCIAL STRUCTURE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1929,
                  "structstyle": "Industrial - Lofts",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 2275000.0,
                  "saledate": "2001-10-01",
                  "owner": "DETROIT PUBLIC SCHOOLS",
                  "mailadd": "1601 FARNSWORTH BUILDING C",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48211",
                  "address": "6134 2ND AVE",
                  "ll_bldg_footprint_sqft": 8528,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_structure": 2000.0,
                  "lbcs_structure_desc": "Commercial buildings and other specialized structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "lbcs_ownership": 6100.0,
                  "lbcs_ownership_desc": "Nonprofit educational",
                  "saddno": "6134",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6134 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3404",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 43&44 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.365194",
                  "lon": "-83.073848",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.2584,
                  "ll_gissqft": 11261,
                  "path": "/us/mi/wayne/detroit/364469",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "bdd5f7fa-9e4a-4f9a-8d03-3405ce5b766b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 136.64,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "BOARD OF EDUCATION",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 19952.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "bdd5f7fa-9e4a-4f9a-8d03-3405ce5b766b"
          },
          "id": 364469
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0740292,
                          42.3650178
                      ],
                      [
                          -83.0739143,
                          42.3648162
                      ],
                      [
                          -83.073436,
                          42.3649664
                      ],
                      [
                          -83.0735509,
                          42.3651681
                      ],
                      [
                          -83.0740292,
                          42.3650178
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6136 2nd Ave",
              "path": "/us/mi/wayne/detroit/364473",
              "fields": {
                  "ogc_fid": 364473,
                  "geoid": "26163",
                  "parcelnumb": "02002435.001",
                  "usecode": "33450",
                  "usedesc": "POWER HOUSE,SWITCH, OR TRANSFORMER BUILDING",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1929,
                  "structstyle": "Industrial - Lofts",
                  "parvaltype": "ASSESSED",
                  "parval": 443600.0,
                  "saleprice": 0.0,
                  "owner": "DTE ELECTRIC COMPANY",
                  "mailadd": "P O BOX 33017",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48232",
                  "address": "6136 2ND AVE",
                  "ll_bldg_footprint_sqft": 6165,
                  "ll_bldg_count": 1,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4330.0,
                  "lbcs_activity_desc": "Power generation, control, monitor, or distribution",
                  "lbcs_function": 4310.0,
                  "lbcs_function_desc": "Electric power",
                  "lbcs_structure": 6000.0,
                  "lbcs_structure_desc": "Utility and other nonbuilding structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6136",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6136 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 41&42 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.364992",
                  "lon": "-83.073733",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.25698,
                  "ll_gissqft": 11199,
                  "path": "/us/mi/wayne/detroit/364473",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "dd4ad833-6173-4a36-b862-59135824e922",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 17880.0,
                  "taxable_value": 251216.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "dd4ad833-6173-4a36-b862-59135824e922"
          },
          "id": 364473
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0739143,
                          42.3648162
                      ],
                      [
                          -83.0737994,
                          42.3646136
                      ],
                      [
                          -83.0733211,
                          42.3647639
                      ],
                      [
                          -83.073436,
                          42.3649664
                      ],
                      [
                          -83.0739143,
                          42.3648162
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "6100 2nd Ave",
              "path": "/us/mi/wayne/detroit/364476",
              "fields": {
                  "ogc_fid": 364476,
                  "geoid": "26163",
                  "parcelnumb": "02002434.",
                  "usecode": "22750",
                  "usedesc": "OTHER COMMERCIAL STRUCTURE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 3,
                  "yearbuilt": 1922,
                  "structstyle": "Garages - Emergency Response, Staffed",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "DETROIT FIRE DEPARTMENT",
                  "owner2": "DFD E-17",
                  "mailadd": "1301 3RD ST, SUITE 707",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48226",
                  "address": "6100 2ND AVE",
                  "ll_bldg_footprint_sqft": 5137,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_structure": 2000.0,
                  "lbcs_structure_desc": "Commercial buildings and other specialized structures",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "6100",
                  "saddstr": "2ND",
                  "saddsttyp": "AVE",
                  "scity": "DETROIT",
                  "original_address": "6100 SECOND; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3404",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "E SECOND BLVD 39-40 MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 80 X 140",
                  "lat": "42.364790",
                  "lon": "-83.073618",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.257,
                  "sqft": 11200.0,
                  "ll_gisacre": 0.25796,
                  "ll_gissqft": 11242,
                  "path": "/us/mi/wayne/detroit/364476",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "89701680-d481-431c-8a7a-32d11c25551d",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "CITY OWNED",
                  "homestead_pre": 0,
                  "frontage": 80.0,
                  "depth": 140.0,
                  "total_floor_area": 8491.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "89701680-d481-431c-8a7a-32d11c25551d"
          },
          "id": 364476
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.073714,
                          42.3655952
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0736126,
                          42.3656277
                      ],
                      [
                          -83.073714,
                          42.3655952
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "467 Amsterdam St",
              "path": "/us/mi/wayne/detroit/364482",
              "fields": {
                  "ogc_fid": 364482,
                  "geoid": "26163",
                  "parcelnumb": "02001073.001",
                  "usecode": "22256",
                  "usedesc": "PARKING LOT-GRAVEL",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL VACANT",
                  "struct": false,
                  "structno": 0,
                  "parvaltype": "ASSESSED",
                  "parval": 66000.0,
                  "saleprice": 650000.0,
                  "saledate": "2000-09-18",
                  "owner": "NEW AMSTERDAM PARKING LLC",
                  "mailadd": "39553 WOODWARD STE 150",
                  "mail_city": "BLOOMFIELD HILLS",
                  "mail_state2": "MI",
                  "mail_zip": "48304",
                  "address": "467 AMSTERDAM ST",
                  "ll_bldg_footprint_sqft": 0,
                  "ll_bldg_count": 0,
                  "dpv_status": "N",
                  "dpv_codes": "N N",
                  "dpv_notes": "AAM3",
                  "dpv_type": "S",
                  "cass_errorno": "4.1,A1",
                  "usps_vacancy": " ",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 5210.0,
                  "lbcs_activity_desc": "Vehicular parking, storage, etc.",
                  "lbcs_structure": 5210.0,
                  "lbcs_structure_desc": "Surface parking, open",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "467",
                  "saddstr": "AMSTERDAM",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "467 AMSTERDAM; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "S AMSTERDAM W 30 FT 47 W 30 FT OF N 10 FT OF & VAC ALLEY IN REAR MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 30 X 160",
                  "lat": "42.365409",
                  "lon": "-83.073545",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.11,
                  "sqft": 4800.0,
                  "ll_gisacre": 0.11028,
                  "ll_gissqft": 4806,
                  "path": "/us/mi/wayne/detroit/364482",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "746c3f60-be83-4f45-b240-77bfc0308841",
                  "ll_updated_at": "2021-08-20 19:59:32 -0400",
                  "tax_status": "OK",
                  "property_class": "202",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "TAXABLE",
                  "homestead_pre": 0,
                  "frontage": 30.0,
                  "depth": 160.0,
                  "taxable_value": 12683.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "746c3f60-be83-4f45-b240-77bfc0308841"
          },
          "id": 364482
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b"
          },
          "id": 364491
      },
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0725089,
                          42.3659757
                      ],
                      [
                          -83.0736126,
                          42.3656277
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.0720491,
                          42.3651701
                      ],
                      [
                          -83.0725089,
                          42.3659757
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "435 Amsterdam St",
              "path": "/us/mi/wayne/detroit/390867",
              "fields": {
                  "ogc_fid": 390867,
                  "geoid": "26163",
                  "parcelnumb": "02001072-0",
                  "usecode": "22337",
                  "usedesc": "SCHOOL",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 2,
                  "yearbuilt": 1926,
                  "structstyle": "Schools - Vocational",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TEF FOUR LLC",
                  "mailadd": "40500 ANN ARBOR SUITE 200",
                  "mail_city": "PLYMOUTH",
                  "mail_state2": "MI",
                  "mail_zip": "48170",
                  "address": "435 AMSTERDAM ST",
                  "ll_bldg_footprint_sqft": 32346,
                  "ll_bldg_count": 2,
                  "dpv_status": "V",
                  "dpv_codes": "YN NN",
                  "dpv_notes": "AABB",
                  "dpv_type": "S",
                  "cass_errorno": "A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 4100.0,
                  "lbcs_activity_desc": "School or library",
                  "lbcs_function": 6100.0,
                  "lbcs_function_desc": "Educational services",
                  "lbcs_structure": 4200.0,
                  "lbcs_structure_desc": "School or university buildings",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "435",
                  "saddstr": "AMSTERDAM",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "435 AMSTERDAM; 48202",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3407",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "S AMSTERDAM 48 E 10 FT 47 N 1/2 VAC ALLEY IN REAR MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 9-8 & N 1/2 VAC ALLEY IN REAR 7-1 & VAC ALLEY IN REAR BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 323.26 IRREG",
                  "lat": "42.365494",
                  "lon": "-83.072777",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 1.786,
                  "sqft": 77801.0,
                  "ll_gisacre": 1.78333,
                  "ll_gissqft": 77715,
                  "path": "/us/mi/wayne/detroit/390867",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "f5579168-fc31-4923-a535-b1419aa01aa3",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "OK",
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "NON-PROFIT",
                  "homestead_pre": 0,
                  "frontage": 323.0,
                  "depth": 241.0,
                  "total_floor_area": 80158.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "f5579168-fc31-4923-a535-b1419aa01aa3"
          },
          "id": 390867
      }
  ]
}
  

Currently the process only matches based on the start of the name string.

For example, if you are looking for a parcel owned by "Jones, Festus", you can search by 'jon', 'jone', 'jones', etc. Searching for 'fest', 'festus', or etc. will not match the parcel.

HTTP API request general form

GET /api/v1/search.json?owner=<name>&context=<path>&token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • owner: The owner name in "Last, First" format. Matches by prefix, you can pass just a last name to get any name beginning with that string. (Case insensitive, minimum 4 characters)
  • context (optional): See notes on context parameter above.
  • limit (optional, default: 20): Maximum number of Parcel Records to return.
  • strict (optional): Set strict=1 to only return Parcel Records in the context.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Response fields

  • results: An array of GeoJSON Features sorted by descending relevance rank containing the matched Parcel Records. An empty results set with no error means no Parcel Records could be matched. Parcel attributes that have a null value are omitted from the results.

Example API request

GET https://app.regrid.com/api/v1/search.json?owner=techone%20development&context=/us/mi/wayne/detroit&strict=1&limit=15&token=<token>
Example results:
  {
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
              "score": 0.9
          },
          "id": 364491
      }
  ]
}
  

Query by additional parcel data fields

Our parcel API is also queryable at a nationwide level by the following fields:

Field Description
ll_gisacre numeric / double precision
ll_gissqft numeric / integer
usps_vacancy text
rdi text
ll_bldg_count numeric / integer
saleprice numeric / double precision
zoning text
lbcs_activity numeric
lbcs_function numeric
lbcs_structure numeric
lbcs_site numeric
lbcs_ownership numeric
saledate date
szip text
ll_uuid uuid
landval numeric
geoid text
owner text
parcelnumb text
state2 text
path text
county text
yearbuilt numeric / integer
improvval numeric / double precision
alt_parcelnumb1 text
census_block text
census_blockgroup text
census_tract text
census_school_district text
qoz text

Example queries with supported keys and value formats

GET or POST /api/v1/query?fields[:field_name][:operator]=:value...&token=:token_value

Example API requests

Numeric field ll_gisacre

https://app.regrid.com/api/v1/query?fields[ll_gisacre][eq]=1000.2426&offset_id=1234&limit=5

https://app.regrid.com/api/v1/query?fields[ll_gisacre][ne]=100&fields[ll_gisacre][gt]=99.0&fields[ll_gisacre][lt]=200&fields[ll_gisacre][between]=[100, 300]

Text field zoning

https://app.regrid.com/api/v1/query?fields[zoning][ilike]=RS-1&fields[zoning][ne]=RS-1&fields[zoning][between]=["RS-1", "RS-14"]&fields[zoning][nin]=["RS-1", "RS-9", "MHPD", "RD-D", "AG-2"]&fields[zoning][order]=DESC

Date field saledate

https://app.regrid.com/api/v1/query?&fields[saledate][between]=["2020", "2021/04/22"]&fields[saledate][isnull]=false&limit=100

Boolean field struct

https://app.regrid.com/api/v1/query?fields[struct][ne]=false&fields[struct][eq]=true&fields[struct][isnull]=false

Example results format

{
    "results": [
      array of GeoJSON features...
    ]
}

Supported types and query parameters

All field types are supported. The operators available vary by field type:

Field Type Operators
Number eq, ne, isnull, between, gt, gte, lt, lte, in, nin, order
Text eq, ne, isnull, in, nin, ilike
Date eq, ne, isnull, between, gt, gte, lt, lte, in, nin, order
Boolean eq, ne, isnull
All Types limit, count, offset_id

Operators on each field

fields[:field_name][:operator]

Operator Description
eq equal
ne not equal
isnull is null, takes boolean true/false values only
between between inclusive
gt greater than
gte greater than or equal
lt less than
lte less than or equal
in in set
nin not in set
ilike case insensitive, matches the given string within the text field value (ex %VALUE%)
order ASC/DESC

Parameters for the entire query

:param_name=:value

Parameter Description
count true/false
offset_id See Pagination for details
limit An integer (API-wide max limit is 1000, default is 20)
return_geometry true/false. Default true
return_custom true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.
return_field_labels true/false. Default true
context A path string as described here

Pagination

If your request returns more than 1000 parcel records, you will need to use pagination for your query results.

Pagination is performed by including an offset_id parameter with the integer id from a previous query. Each parcel record has an id for location in our database. You will need the id of the last parcel record from your previous query to use in the next iteration of the pagination request. This request returns the remaining parcels up to the value of the limit parameter.

To page results, the initial request needs to include the parameter offset_id=0 which indicates results need to be in ID order. The required id is located at the root level of each parcel feature returned with id key.

Parcel_id.png

Example pagination first request

Give me the parcel records in Los Angeles County where the parcel acreage is greater than 2 acres. For reference, there are 228,122 parcels matching this query.

https://app.regrid.com/api/v1/query?fields[geoid][eq]=06037&fields[ll_gisacre][gt]=2&offset_id=0&limit=1000

Example pagination subsequent request

https://app.regrid.com/api/v1/query?fields[geoid][eq]=06037&fields[ll_gisacre][gt]=2&offset_id=155171239&limit=1000

The order parameter is not allowed when paging, as is indicated by an error message if the query is invalid.

If a total count is needed, an initial query can be made with count=true. Otherwise, successive pages can be requested until the results are less than the limit or empty.

Count

When the count parameter is set to a boolean value of true or false, the results will be the entire dataset filtered by other optional operators on the field(s). When the boolean value is true, there is no cost to return the total number of parcels for the query.

Requests with count return an integer value in the following format.

Example results format

{
  "results": {
    "count": 1846
  }
}

Limit is ignored when the count operator is present.

Customize response payload

To reduce payload size there are a several flags available. These parameters default to true. A false on each of these parameters will yield the following results:

  • return_geometry: A list of features is returned without geometry values.
  • return_custom: County-specific custom fields are not included in results. This can be used to retrieve only Standard Schema results.
  • return_field_labels: An object of Standard Schema field names and descriptions are not returned within each feature.

Request format

Queries can be made as GET or POST requests. The examples below show the same query being made by both types of request.

GET request example

fields[ll_gisacre][eq]=1000.2426&fields[ll_gisacre][ne]=1000&limit=5

POST request example

{
  "fields": {
    "ll_gisacre": {
      "eq": 1000.2426,
      "ne":  1000
    }
  },
  "limit": 5
}

Other considerations

  • Date formats allowed: YYYY/MM/DD or MM/DD/YYYY Also, a value with a year only like "2022" will evaluate as "2022/01/01".
  • Multiple operators are ANDed together.
  • Boolean and boolean-like fields (struct, usps_vacancy, rdi) can only be queried with a subset of operators (eq, ne, isnull).

Find by ll_uuid

This endpoint allows you to lookup a parcel record by our universal unique id - ll_uuid as described in our parcel schema.

HTTP API request general form

GET /api/v1/parcel/<ll_uuid>.json?token=<token>

Query parameters

  • ll_uuid: The UUID retrieved from another Regrid API call
  • token: Your Regrid assigned authorization token
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Example API request

GET https://app.regrid.com/api/v1/parcel/16bc4f67-009a-496c-bd0a-9e9d55f5228b.json?token=<token>
Example results:
  {
    "results": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [
                            -83.0734768,
                            42.36519
                        ],
                        [
                            -83.0732494,
                            42.3647849
                        ],
                        [
                            -83.0726029,
                            42.3649934
                        ],
                        [
                            -83.072834,
                            42.3653976
                        ],
                        [
                            -83.0733754,
                            42.3652225
                        ],
                        [
                            -83.0734768,
                            42.36519
                        ]
                    ]
                ]
            },
            "properties": {
                "headline": "440 Burroughs St",
                "path": "/us/mi/wayne/detroit/364491",
                "fields": {
                    "ogc_fid": 364491,
                    "geoid": "26163",
                    "parcelnumb": "02001069-71",
                    "usecode": "22320",
                    "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                    "zoning": "SD2",
                    "zoning_description": "COMMERCIAL",
                    "struct": true,
                    "structno": 1,
                    "yearbuilt": 1926,
                    "structstyle": "Office Buildings",
                    "parvaltype": "ASSESSED",
                    "parval": 0.0,
                    "saleprice": 0.0,
                    "owner": "TECHONE DEVELOPMENT LLC",
                    "mailadd": "440 BURROUGHS",
                    "mail_city": "DETROIT",
                    "mail_state2": "MI",
                    "mail_zip": "48202",
                    "address": "440 BURROUGHS ST",
                    "ll_bldg_footprint_sqft": 27956,
                    "ll_bldg_count": 1,
                    "dpv_status": "V",
                    "dpv_codes": "DN NY",
                    "dpv_notes": "AAN105",
                    "dpv_type": "H",
                    "cass_errorno": "12.2,14.7,15.1,A1",
                    "rdi": "N",
                    "usps_vacancy": "N",
                    "usps_vacancy_date": "2021-12-02",
                    "lbcs_activity": 2300.0,
                    "lbcs_activity_desc": "Office",
                    "lbcs_structure": 2100.0,
                    "lbcs_structure_desc": "Office or bank building",
                    "lbcs_site": 6000.0,
                    "lbcs_site_desc": "Developed site with buildings",
                    "saddno": "440",
                    "saddstr": "BURROUGHS",
                    "saddsttyp": "ST",
                    "scity": "DETROIT",
                    "original_address": "440 BURROUGHS",
                    "city": "detroit",
                    "county": "wayne",
                    "state2": "mi",
                    "szip": "48202-3429",
                    "address_source": "county,census_places;accuzip",
                    "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                    "lat": "42.365091",
                    "lon": "-83.073041",
                    "qoz": "Yes",
                    "qoz_tract": "26163518900",
                    "census_tract": "26163533900",
                    "census_blockgroup": "261635339003",
                    "gisacre": 0.697,
                    "sqft": 30365.0,
                    "ll_gisacre": 0.69713,
                    "ll_gissqft": 30380,
                    "path": "/us/mi/wayne/detroit/364491",
                    "ll_stable_id": "preserved",
                    "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                    "ll_updated_at": "2021-12-08 14:42:19 -0500",
                    "tax_status": "OK",
                    "property_class": "201",
                    "ward": "2",
                    "council_district": "5",
                    "taxable_status": "PA 245",
                    "homestead_pre": 0,
                    "frontage": 190.0,
                    "depth": 160.0,
                    "total_floor_area": 142125.0,
                    "taxable_value": 0.0,
                    "landmap": "007"
                },
                "field_labels": {
                    "ogc_fid": "Object ID",
                    "geoid": "FIPS Code",
                    "sourceagent": "Source Agent",
                    "parcelnumb": "Parcel ID",
                    "usecode": "Parcel Use Code",
                    "usedesc": "Parcel Use Description",
                    "zoning": "Zoning Code",
                    "zoning_description": "Zoning Description",
                    "struct": "Structure on Parcel",
                    "multistruct": "Multiple Structures on Parcel",
                    "structno": "Number of Structures on Parcel",
                    "yearbuilt": "Structure Year Built",
                    "numstories": "Number of Stories",
                    "numunits": "Number of Units",
                    "structstyle": "Structure Style",
                    "parvaltype": "Parcel Value Type",
                    "improvval": "Improvement Value",
                    "landval": "Land Value",
                    "parval": "Total Parcel Value",
                    "agval": "Agricultural Value",
                    "saleprice": "Last Sale Price",
                    "saledate": "Last Sale Date",
                    "taxamt": "Annual Tax Bill",
                    "taxyear": "Tax Year",
                    "owntype": "Owner Type",
                    "owner": "Owner Name",
                    "ownfrst": "Owner First Name",
                    "ownlast": "Owner Last Name",
                    "owner2": "Second Owner Name",
                    "owner3": "Third Owner Name",
                    "owner4": "Fourth Owner Name",
                    "subsurfown": "Subsurface Owner",
                    "subowntype": "Subsurface Owner Type",
                    "mailadd": "Mailing Address",
                    "mail_address2": "Mailing Address Second Line",
                    "careof": "Mailing Address Care Of",
                    "mail_addno": "Mailing Address Street Number",
                    "mail_addpref": "Mailing Address Street Prefix",
                    "mail_addstr": "Mailing Address Street Name",
                    "mail_addsttyp": "Mailing Address Street Type",
                    "mail_addstsuf": "Mailing Address Street Suffix",
                    "mail_unit": "Mailing Address Unit Number",
                    "mail_city": "Mailing Address City",
                    "mail_state2": "Mailing Address State",
                    "mail_zip": "Mailing Address ZIP Code",
                    "mail_country": "Mailing Address Country",
                    "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                    "address": "Parcel Address",
                    "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                    "ll_bldg_count": "Loveland Calculated Building Count",
                    "cdl_raw": "Cropland Data Layer Raw Values",
                    "cdl_majority_category": "Cropland Data Layer Majority Category",
                    "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                    "cdl_date": "Cropland Data Layer Date",
                    "dpv_status": "USPS Delivery Point Validation",
                    "dpv_codes": "Delivery Point Validation Codes",
                    "dpv_notes": "Delivery Point Validation Notes",
                    "dpv_type": "Delivery Point Match Type",
                    "cass_errorno": "CASS Error Codes",
                    "rdi": "Residential Delivery Indicator",
                    "usps_vacancy": "USPS Vacancy Indicator",
                    "usps_vacancy_date": "USPS Vacancy Indicator Date",
                    "lbcs_activity": "LBCS Activity Code",
                    "lbcs_activity_desc": "Land Use Code Description: Activity",
                    "lbcs_function": "LBCS Function Code",
                    "lbcs_function_desc": "Land Use Code Description: Function",
                    "lbcs_structure": "LBCS Structure Code",
                    "lbcs_structure_desc": "Land Use Code Description: Structure",
                    "lbcs_site": "LBCS Site Code",
                    "lbcs_site_desc": "Land Use Code Description: Site",
                    "lbcs_ownership": "LBCS Ownership Code",
                    "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                    "address2": "Parcel Address Second Line",
                    "saddno": "Parcel Address Number",
                    "saddpref": "Parcel Address Prefix",
                    "saddstr": "Parcel Address Street Name",
                    "saddsttyp": "Parcel Address Street Type",
                    "saddstsuf": "Parcel Address Street Suffix",
                    "sunit": "Parcel Address Unit",
                    "scity": "Site City",
                    "original_address": "Original Parcel Address",
                    "city": "US Census County Subdivision",
                    "county": "Parcel Address County",
                    "state2": "Parcel Address State",
                    "szip": "Site Zip",
                    "urbanization": "Parcel Urbanizacion",
                    "location_name": "Location Name",
                    "address_source": "Primary Address Source",
                    "legaldesc": "Legal Description",
                    "plat": "Plat",
                    "book": "Book",
                    "page": "Page",
                    "block": "Block",
                    "lot": "Lot",
                    "neighborhood": "Neighborhood",
                    "subdivision": "Subdivision",
                    "lat": "Latitude",
                    "lon": "Longitude",
                    "qoz": "Federal Qualified Opportunity Zone",
                    "qoz_tract": "Qualified Opportunity Zone Tract Number",
                    "census_tract": "Census 2010 Tract",
                    "census_block": "Census 2010 Block",
                    "census_blockgroup": "Census 2010 Blockgroup",
                    "sourceref": "Source Document Reference",
                    "sourcedate": "Source Document Date",
                    "sourceurl": "Source URL",
                    "recrdareatx": "Recorded Area (text)",
                    "recrdareano": "Recorded Area (number)",
                    "gisacre": "County-Provided Acres",
                    "sqft": "County-Provided Parcel Square Feet",
                    "ll_gisacre": "Calculated Acres",
                    "ll_gissqft": "Calculated Parcel Sq Ft",
                    "reviseddate": "Date of Last Revision",
                    "path": "Parcel Path",
                    "ll_stable_id": "Stable ID Status",
                    "ll_uuid": "UUID",
                    "ll_updated_at": "Updated At",
                    "tax_status": "Tax Status",
                    "tax_due": "Tax Due",
                    "property_class": "Property Class",
                    "ward": "Ward",
                    "council_district": "Council District",
                    "taxable_status": "Taxable Status",
                    "homestead_pre": "Homestead Principal Residence Exemption",
                    "nez": "Neigborhood Enterprise Zone",
                    "land_bank_inventory_status": "Land Bank Inventory Status",
                    "frontage": "Frontage",
                    "depth": "Depth",
                    "total_floor_area": "Total Floor Area",
                    "taxable_value": "Taxable Value",
                    "landmap": "Land Map",
                    "related": "Related",
                    "sale_numbe": "Sale Number",
                    "grantor": "Grantor",
                    "grantee": "Grantee",
                    "sale_terms": "Sale Terms",
                    "verified_b": "Sale Verification Form",
                    "sale_instr": "Sale Instrument",
                    "sale_trans": "Sale Percentage of Ownership",
                    "ecf": "Economic Condition Factor Neighborhood"
                },
                "context": {
                    "headline": "Detroit, MI",
                    "name": "Detroit",
                    "path": "/us/mi/wayne/detroit",
                    "active": true
                },
                "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b"
            },
            "id": 364491
        }
    ]
}

  

Parcel record search by using the parcel path

Endpoint used to get individual parcel records returned as a GeoJSON feature by sending a parcel path.

HTTP API request general form

 GET /api/v1/parcel.json?path=<path>&token=<token>

Query parameters

  • path: The canonical path of the parcel in the Regrid system. For example, /us/mi/wayne/detroit/555. Response fields A single GeoJSON Feature for the requested parcel (rather than an array of results). Parcel attributes that have a null value are omitted from the results.

  • token: Your Regrid assigned authorization token.
  • return_custom (optional): true/false. Default true: A false value omits county-specific fields, making the response contain standard schema fields only.

Example request

 GET https://app.regrid.com/api/v1/parcel.json?path=/us/mi/wayne/detroit/364491&token=<token>

Example truncated results

{
  "type": "Feature",
  "geometry": {
      "type": "Polygon",
      "coordinates": [
          [
              [
                  -83.0734768,
                  42.36519
              ],
              ...
          ]
      ]
  },
  "properties": {
      "headline": "440 Burroughs St",
      "path": "/us/mi/wayne/detroit/364491",
      "fields": {
          "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
          "gisacre": 0.697,
          ...
      },
      "field_labels": {
          "ll_uuid": "UUID",
          "gisacre": "County-Provided Acres",
          ...
      },
      "context": {
          "headline": "Detroit, MI",
          "name": "Detroit",
          "path": "/us/mi/wayne/detroit",
          "active": true
      },
      "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b"
  },
  "id": 364491
}

Response format

On success, all of the above requests return one or an array of GeoJSON Features representing the matched parcels. These Features include polygon geometries and properties. Our standard fields are documented in the Regrid Parcel Schema. Some additional undocumented fields may be included in the properties. An empty results set with no error means no parcels could be matched. Parcel attributes that have a null value are omitted from the results.

Example response payload with results:
  {
  "results": [
      {
          "type": "Feature",
          "geometry": {
              "type": "Polygon",
              "coordinates": [
                  [
                      [
                          -83.0734768,
                          42.36519
                      ],
                      [
                          -83.0732494,
                          42.3647849
                      ],
                      [
                          -83.0726029,
                          42.3649934
                      ],
                      [
                          -83.072834,
                          42.3653976
                      ],
                      [
                          -83.0733754,
                          42.3652225
                      ],
                      [
                          -83.0734768,
                          42.36519
                      ]
                  ]
              ]
          },
          "properties": {
              "headline": "440 Burroughs St",
              "path": "/us/mi/wayne/detroit/364491",
              "fields": {
                  "ogc_fid": 364491,
                  "geoid": "26163",
                  "parcelnumb": "02001069-71",
                  "usecode": "22320",
                  "usedesc": "OFFICE BLDG-3 STORIES OR MORE",
                  "zoning": "SD2",
                  "zoning_description": "COMMERCIAL",
                  "struct": true,
                  "structno": 1,
                  "yearbuilt": 1926,
                  "structstyle": "Office Buildings",
                  "parvaltype": "ASSESSED",
                  "parval": 0.0,
                  "saleprice": 0.0,
                  "owner": "TECHONE DEVELOPMENT LLC",
                  "mailadd": "440 BURROUGHS",
                  "mail_city": "DETROIT",
                  "mail_state2": "MI",
                  "mail_zip": "48202",
                  "address": "440 BURROUGHS ST",
                  "ll_bldg_footprint_sqft": 26780,
                  "ll_bldg_count": 1,
                  "dpv_status": "V",
                  "dpv_codes": "DN NY",
                  "dpv_notes": "AAN105",
                  "dpv_type": "H",
                  "cass_errorno": "12.2,14.7,15.1,A1",
                  "rdi": "N",
                  "usps_vacancy": "N",
                  "usps_vacancy_date": "2021-08-15",
                  "lbcs_activity": 2300.0,
                  "lbcs_activity_desc": "Office",
                  "lbcs_structure": 2100.0,
                  "lbcs_structure_desc": "Office or bank building",
                  "lbcs_site": 6000.0,
                  "lbcs_site_desc": "Developed site with buildings",
                  "saddno": "440",
                  "saddstr": "BURROUGHS",
                  "saddsttyp": "ST",
                  "scity": "DETROIT",
                  "original_address": "440 BURROUGHS",
                  "city": "detroit",
                  "county": "wayne",
                  "state2": "mi",
                  "szip": "48202-3429",
                  "address_source": "county,census_places;accuzip",
                  "legaldesc": "N BURROUGHS 10-11 BLK 12--CASS FARM CO LTD SUB L19 P35 PLATS, W C R 2/27 37-38 & S 1/2 OF VAC ALLEY ADJ MANDLEBAUMS SUB L2 P8 PLATS, W C R 2/62 189.53 IRREG",
                  "lat": "42.365091",
                  "lon": "-83.073041",
                  "qoz": "Yes",
                  "qoz_tract": "26163518900",
                  "census_tract": "26163533900",
                  "census_blockgroup": "261635339003",
                  "gisacre": 0.697,
                  "sqft": 30365.0,
                  "ll_gisacre": 0.69713,
                  "ll_gissqft": 30380,
                  "path": "/us/mi/wayne/detroit/364491",
                  "ll_stable_id": "preserved",
                  "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
                  "ll_updated_at": "2021-08-20 19:56:55 -0400",
                  "tax_status": "DELINQUENT",
                  "tax_due": 123.2,
                  "property_class": "201",
                  "ward": "2",
                  "council_district": "5",
                  "taxable_status": "PA 245",
                  "homestead_pre": 0,
                  "frontage": 190.0,
                  "depth": 160.0,
                  "total_floor_area": 142125.0,
                  "taxable_value": 0.0,
                  "landmap": "007"
              },
              "field_labels": {
                  "ogc_fid": "Object ID",
                  "geoid": "FIPS Code",
                  "sourceagent": "Source Agent",
                  "parcelnumb": "Parcel ID",
                  "usecode": "Parcel Use Code",
                  "usedesc": "Parcel Use Description",
                  "zoning": "Zoning Code",
                  "zoning_description": "Zoning Description",
                  "struct": "Structure on Parcel",
                  "multistruct": "Multiple Structures on Parcel",
                  "structno": "Number of Structures on Parcel",
                  "yearbuilt": "Structure Year Built",
                  "numstories": "Number of Stories",
                  "numunits": "Number of Units",
                  "structstyle": "Structure Style",
                  "parvaltype": "Parcel Value Type",
                  "improvval": "Improvement Value",
                  "landval": "Land Value",
                  "parval": "Total Parcel Value",
                  "agval": "Agricultural Value",
                  "saleprice": "Last Sale Price",
                  "saledate": "Last Sale Date",
                  "taxamt": "Annual Tax Bill",
                  "owntype": "Owner Type",
                  "owner": "Owner Name",
                  "ownfrst": "Owner First Name",
                  "ownlast": "Owner Last Name",
                  "owner2": "Second Owner Name",
                  "owner3": "Third Owner Name",
                  "owner4": "Fourth Owner Name",
                  "subsurfown": "Subsurface Owner",
                  "subowntype": "Subsurface Owner Type",
                  "mailadd": "Mailing Address",
                  "mail_address2": "Mailing Address Second Line",
                  "careof": "Mailing Address Care Of",
                  "mail_addno": "Mailing Address Street Number",
                  "mail_addpref": "Mailing Address Street Prefix",
                  "mail_addstr": "Mailing Address Street Name",
                  "mail_addsttyp": "Mailing Address Street Type",
                  "mail_addstsuf": "Mailing Address Street Suffix",
                  "mail_unit": "Mailing Address Unit Number",
                  "mail_city": "Mailing Address City",
                  "mail_state2": "Mailing Address State",
                  "mail_zip": "Mailing Address ZIP Code",
                  "mail_country": "Mailing Address Country",
                  "mail_urbanization": "Mailing Address Urbanizacion (Puerto Rico)",
                  "address": "Parcel Address",
                  "ll_bldg_footprint_sqft": "Loveland Calculated Building Footprint Square Feet",
                  "ll_bldg_count": "Loveland Calculated Building Count",
                  "cdl_raw": "Cropland Data Layer Raw Values",
                  "cdl_majority_category": "Cropland Data Layer Majority Category",
                  "cdl_majority_percent": "Cropland Data Layer Majority Percent",
                  "cdl_date": "Cropland Data Layer Date",
                  "dpv_status": "USPS Delivery Point Validation",
                  "dpv_codes": "Delivery Point Validation Codes",
                  "dpv_notes": "Delivery Point Validation Notes",
                  "dpv_type": "Delivery Point Match Type",
                  "cass_errorno": "CASS Error Codes",
                  "rdi": "Residential Delivery Indicator",
                  "usps_vacancy": "USPS Vacancy Indicator",
                  "usps_vacancy_date": "USPS Vacancy Indicator Date",
                  "lbcs_activity": "LBCS Activity Code",
                  "lbcs_activity_desc": "Land Use Code Description: Activity",
                  "lbcs_function": "LBCS Function Code",
                  "lbcs_function_desc": "Land Use Code Description: Function",
                  "lbcs_structure": "LBCS Structure Code",
                  "lbcs_structure_desc": "Land Use Code Description: Structure",
                  "lbcs_site": "LBCS Site Code",
                  "lbcs_site_desc": "Land Use Code Description: Site",
                  "lbcs_ownership": "LBCS Ownership Code",
                  "lbcs_ownership_desc": "Land Use Code Description: Ownership",
                  "address2": "Parcel Address Second Line",
                  "saddno": "Parcel Address Number",
                  "saddpref": "Parcel Address Prefix",
                  "saddstr": "Parcel Address Street Name",
                  "saddsttyp": "Parcel Address Street Type",
                  "saddstsuf": "Parcel Address Street Suffix",
                  "sunit": "Parcel Address Unit",
                  "scity": "Site City",
                  "original_address": "Original Parcel Address",
                  "city": "US Census County Subdivision",
                  "county": "Parcel Address County",
                  "state2": "Parcel Address State",
                  "szip": "Site Zip",
                  "urbanization": "Parcel Urbanizacion",
                  "location_name": "Location Name",
                  "address_source": "Primary Address Source",
                  "legaldesc": "Legal Description",
                  "plat": "Plat",
                  "book": "Book",
                  "page": "Page",
                  "block": "Block",
                  "lot": "Lot",
                  "neighborhood": "Neighborhood",
                  "subdivision": "Subdivision",
                  "lat": "Latitude",
                  "lon": "Longitude",
                  "taxyear": "Tax Year",
                  "qoz": "Federal Qualified Opportunity Zone",
                  "qoz_tract": "Qualified Opportunity Zone Tract Number",
                  "census_tract": "Census 2010 Tract",
                  "census_block": "Census 2010 Block",
                  "census_blockgroup": "Census 2010 Blockgroup",
                  "sourceref": "Source Document Reference",
                  "sourcedate": "Source Document Date",
                  "sourceurl": "Source URL",
                  "recrdareatx": "Recorded Area (text)",
                  "recrdareano": "Recorded Area (number)",
                  "gisacre": "County-Provided Acres",
                  "sqft": "County-Provided Parcel Square Feet",
                  "ll_gisacre": "Calculated Acres",
                  "ll_gissqft": "Calculated Parcel Sq Ft",
                  "reviseddate": "Date of Last Revision",
                  "path": "Parcel Path",
                  "ll_stable_id": "Stable ID Status",
                  "ll_uuid": "UUID",
                  "ll_updated_at": "Updated At",
                  "tax_status": "Tax Status",
                  "tax_due": "Tax Due",
                  "property_class": "Property Class",
                  "ward": "Ward",
                  "council_district": "Council District",
                  "taxable_status": "Taxable Status",
                  "homestead_pre": "Homestead Principal Residence Exemption",
                  "nez": "Neigborhood Enterprise Zone",
                  "land_bank_inventory_status": "Land Bank Inventory Status",
                  "frontage": "Frontage",
                  "depth": "Depth",
                  "total_floor_area": "Total Floor Area",
                  "taxable_value": "Taxable Value",
                  "landmap": "Land Map",
                  "related": "Related",
                  "sale_numbe": "Sale Number",
                  "grantor": "Grantor",
                  "grantee": "Grantee",
                  "sale_terms": "Sale Terms",
                  "verified_b": "Sale Verification Form",
                  "sale_instr": "Sale Instrument",
                  "sale_trans": "Sale Percentage of Ownership",
                  "ecf": "Economic Condition Factor Neighborhood"
              },
              "context": {
                  "headline": "Detroit, MI",
                  "name": "Detroit",
                  "path": "/us/mi/wayne/detroit",
                  "active": true
              },
              "ll_uuid": "16bc4f67-009a-496c-bd0a-9e9d55f5228b",
              "score": 1.0
          },
          "id": 364491
      }
  ]
}
  

Notes on parcel properties

  • headline: a human-friendly display address for the parcel. If no address is available, it falls back to the parcel number.
  • path: The parcel's unique identifier as described above in "Parcel Paths Above"
  • fields: Columns from the parcel table. These include standard column names wherever fields are available, plus additional columns varying by the particular county & data available. Parcel attributes that have a null value are omitted from the results.
  • field_labels: Human-friendly labels for each key in fields.
  • context: A bit of info about the city or county where this parcel is found, including a path one can use as context for further searches.

Regrid Parcel Record Schema endpoint

Endpoint used to fetch the current Regrid Parcel Schema.

HTTP API request

GET /api/v1/schema.json

Response fields

A hash with details on all fields in the Regrid Parcel Schema

Example response:
  {
  "schema": {
      "ogc_fid": {
          "type": "serial primary key",
          "human": "Object ID",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "geoid": {
          "type": "text",
          "human": "FIPS Code",
          "description": "FIPS code (state + county FIPS codes)",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "sourceagent": {
          "type": "text",
          "human": "Source Agent",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "parcelnumb": {
          "type": "text",
          "human": "Parcel ID",
          "examples": [
              "02004940",
              "001-020-4624-001"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data",
              "core"
          ]
      },
      "usecode": {
          "type": "text",
          "human": "Parcel Use Code",
          "description": "Varies by governing municipality",
          "examples": [
              104
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "usedesc": {
          "type": "text",
          "human": "Parcel Use Description",
          "description": "Varies by governing municipality",
          "examples": [
              "Residential"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "zoning": {
          "type": "text",
          "human": "Zoning Code",
          "description": "Varies by governing municipality",
          "examples": [
              "R-1"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "zoning_description": {
          "type": "text",
          "human": "Zoning Description",
          "description": "Varies by governing municipality",
          "examples": [
              "Residential"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "struct": {
          "type": "boolean",
          "human": "Structure on Parcel",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "multistruct": {
          "type": "boolean",
          "human": "Multiple Structures on Parcel",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "structno": {
          "type": "integer",
          "human": "Number of Structures on Parcel",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "yearbuilt": {
          "type": "integer",
          "human": "Structure Year Built",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "numstories": {
          "type": "double precision",
          "human": "Number of Stories",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "numunits": {
          "type": "integer",
          "human": "Number of Units",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "structstyle": {
          "type": "text",
          "human": "Structure Style",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "parvaltype": {
          "type": "text",
          "human": "Parcel Value Type",
          "description": "The type of value reported in the parcel value fields",
          "examples": [
              "Appraised",
              "Assessed",
              "Taxable",
              "Market",
              "Market Value"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "improvval": {
          "type": "double precision",
          "human": "Improvement Value",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "landval": {
          "type": "double precision",
          "human": "Land Value",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "parval": {
          "type": "double precision",
          "human": "Total Parcel Value",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "agval": {
          "type": "double precision",
          "human": "Agricultural Value",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "saleprice": {
          "type": "double precision",
          "human": "Last Sale Price",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "saledate": {
          "type": "date",
          "human": "Last Sale Date",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "taxamt": {
          "type": "double precision",
          "human": "Annual Tax Bill",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "owntype": {
          "type": "text",
          "human": "Owner Type",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "owner": {
          "type": "text",
          "human": "Owner Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data",
              "owner_address"
          ]
      },
      "ownfrst": {
          "type": "text",
          "human": "Owner First Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data",
              "owner_address"
          ]
      },
      "ownlast": {
          "type": "text",
          "human": "Owner Last Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data",
              "owner_address"
          ]
      },
      "owner2": {
          "type": "text",
          "human": "Second Owner Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data"
          ]
      },
      "owner3": {
          "type": "text",
          "human": "Third Owner Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data"
          ]
      },
      "owner4": {
          "type": "text",
          "human": "Fourth Owner Name",
          "tier": "standard",
          "categories": [
              "basic",
              "assessor_data"
          ]
      },
      "subsurfown": {
          "type": "text",
          "human": "Subsurface Owner",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "subowntype": {
          "type": "text",
          "human": "Subsurface Owner Type",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "mailadd": {
          "type": "text",
          "human": "Mailing Address",
          "description": "This is the address where the tax and other assessor's communications are sent. It is often thought of as the owner's mailing address. It is often the same address as the parcel physical street address, but very commonly it is a different address than the parcel address itself.",
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_address2": {
          "type": "text",
          "human": "Mailing Address Second Line",
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "careof": {
          "type": "text",
          "human": "Mailing Address Care Of",
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_addno": {
          "type": "text",
          "human": "Mailing Address Street Number",
          "examples": [
              "402"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_addpref": {
          "type": "text",
          "human": "Mailing Address Street Prefix",
          "examples": [
              "S"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_addstr": {
          "type": "text",
          "human": "Mailing Address Street Name",
          "examples": [
              "FOURTH"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_addsttyp": {
          "type": "text",
          "human": "Mailing Address Street Type",
          "examples": [
              "AVE"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_addstsuf": {
          "type": "text",
          "human": "Mailing Address Street Suffix",
          "examples": [
              "NW"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_unit": {
          "type": "text",
          "human": "Mailing Address Unit Number",
          "examples": [
              "APT # 2"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_city": {
          "type": "text",
          "human": "Mailing Address City",
          "examples": [
              "Ann Arbor"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_state2": {
          "type": "text",
          "human": "Mailing Address State",
          "description": "Mailing Address State 2-Letter abbreviation",
          "examples": [
              "MI"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_zip": {
          "type": "text",
          "human": "Mailing Address ZIP Code",
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_country": {
          "type": "text",
          "human": "Mailing Address Country",
          "examples": [
              "US",
              "Bolivia",
              "Canada"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "mail_urbanization": {
          "type": "text",
          "human": "Mailing Address Urbanizacion (Puerto Rico)",
          "tier": "standard",
          "categories": [
              "standard",
              "owner_address"
          ]
      },
      "address": {
          "type": "text",
          "human": "Parcel Address",
          "description": "This is the address of the parcel itself. Also called the \"situs address\" or \"site address\". Not every parcel has a street address, especially in agricultural areas and other large parcels.",
          "examples": [
              "12109 KATZ RD"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "address2": {
          "type": "text",
          "human": "Parcel Address Second Line",
          "examples": [
              "Apt 2",
              "Unit B",
              "6th floor"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "saddno": {
          "type": "text",
          "human": "Parcel Address Number",
          "examples": [
              "12109"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "saddpref": {
          "type": "text",
          "human": "Parcel Address Prefix",
          "examples": [
              "N"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "saddstr": {
          "type": "text",
          "human": "Parcel Address Street Name",
          "examples": [
              "GLENN"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "saddsttyp": {
          "type": "text",
          "human": "Parcel Address Street Type",
          "examples": [
              "RD"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "saddstsuf": {
          "type": "text",
          "human": "Parcel Address Street Suffix",
          "examples": [
              "NW"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "sunit": {
          "type": "text",
          "human": "Parcel Address Unit",
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "scity": {
          "type": "text",
          "human": "Parcel Address City",
          "examples": [
              "GRASS LAKE"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "original_address": {
          "type": "text",
          "human": "Original Parcel Address",
          "description": "Address fields as originally provided by the county, separated by a semicolon and a space",
          "examples": [
              "12109 Katz Rd; NW; Ann Arbor; MI; 48105"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "city": {
          "type": "text",
          "human": "US Census County Subdivision",
          "description": "Used for organizational purposes. Refer to scity for the city associated with the site address.",
          "link": "https://www2.census.gov/geo/pdfs/reference/GARM/Ch8GARM.pdf",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "county": {
          "type": "text",
          "human": "Parcel Address County",
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "state2": {
          "type": "text",
          "human": "Parcel Address State",
          "examples": [
              "MI"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "szip": {
          "type": "text",
          "human": "Parcel Address Zip Code",
          "examples": [
              "48103",
              "48104-3423"
          ],
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "urbanization": {
          "type": "text",
          "human": "Parcel Urbanizacion",
          "description": "A postal address field commonly used in Puerto Rico",
          "example": "Caguas",
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "location_name": {
          "type": "text",
          "human": "Location Name",
          "description": "A name commonly associated with this parcel",
          "tier": "standard",
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "address_source": {
          "type": "text",
          "human": "Primary Address Source",
          "description": "Default source if none is listed is the county.",
          "default": "'county'",
          "tier": "standard",
          "examples": [
              "openaddresses",
              "accuzip",
              "county"
          ],
          "categories": [
              "basic",
              "situs_address"
          ]
      },
      "legaldesc": {
          "type": "text",
          "human": "Legal Description",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "plat": {
          "type": "text",
          "human": "Plat",
          "description": "Plat number the parcel is recorded on",
          "examples": [
              "A"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "book": {
          "type": "text",
          "human": "Book",
          "description": "Book/Liber the parcel is recorded in",
          "examples": [
              231
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "page": {
          "type": "text",
          "human": "Page",
          "description": "Page/Folio the parcel is recorded on",
          "examples": [
              2
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "block": {
          "type": "text",
          "human": "Block",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "lot": {
          "type": "text",
          "human": "Lot",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "neighborhood": {
          "type": "text",
          "human": "Neighborhood",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "subdivision": {
          "type": "text",
          "human": "Subdivision",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "lat": {
          "type": "text",
          "human": "Latitude",
          "description": "On parcel centroid latitude decimal coordinate",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "lon": {
          "type": "text",
          "human": "Longitude",
          "description": "On parcel centroid longitude decimal coordinate",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "taxyear": {
          "type": "text",
          "human": "Tax Year",
          "description": "A county provided attribute indicating the tax year the assessor data applies to.",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "qoz": {
          "type": "text",
          "human": "Federal Qualified Opportunity Zone",
          "description": "Is this parcel in a US Federal Qualified Opportunity Zone",
          "examples": [
              "Yes",
              "No"
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "qoz_tract": {
          "type": "text",
          "human": "Qualified Opportunity Zone Tract Number",
          "description": "Census tract number as it was defined in Dec 2018 when QOZs were designated.",
          "link": "https://www.irs.gov/newsroom/opportunity-zones-frequently-asked-questions",
          "examples": [
              30059000100,
              30107000100
          ],
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "census_tract": {
          "type": "text",
          "human": "Census 2010 Tract",
          "tier": "standard",
          "categories": [
              "standard",
              "census"
          ]
      },
      "census_block": {
          "type": "text",
          "human": "Census 2010 Block",
          "tier": "standard",
          "categories": [
              "standard",
              "census"
          ]
      },
      "census_blockgroup": {
          "type": "text",
          "human": "Census 2010 Blockgroup",
          "tier": "standard",
          "categories": [
              "standard",
              "census"
          ]
      },
      "sourceref": {
          "type": "text",
          "human": "Source Document Reference",
          "description": "A county provided reference for the parcel record",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "sourcedate": {
          "type": "date",
          "human": "Source Document Date",
          "description": "A county provided date for the parcel record",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "sourceurl": {
          "type": "text",
          "human": "Source URL",
          "description": "A county provided url to the county parcel record online",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "recrdareatx": {
          "type": "text",
          "human": "Recorded Area (text)",
          "deprecated": true,
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "recrdareano": {
          "type": "double precision",
          "human": "Recorded Area (number)",
          "deprecated": true,
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "gisacre": {
          "type": "double precision",
          "human": "County-Provided Acres",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "sqft": {
          "type": "double precision",
          "human": "County-Provided Parcel Square Feet",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data"
          ]
      },
      "ll_gisacre": {
          "type": "double precision",
          "human": "Loveland Calculated Parcel Acres",
          "description": "Parcel acres as calculated by Loveland from the parcel geometry",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data",
              "calculated"
          ]
      },
      "ll_gissqft": {
          "type": "bigint",
          "human": "Loveland Calculated Parcel Square Feet",
          "description": "Parcel square feet as calculated by Loveland from the parcel geometry",
          "tier": "standard",
          "categories": [
              "standard",
              "assessor_data",
              "calculated"
          ]
      },
      "ll_bldg_footprint_sqft": {
          "type": "integer",
          "human": "Loveland Calculated Building Footprint Square Feet",
          "description": "Total building footprint in square feet as calculated by Loveland",
          "tier": "premium",
          "categories": [
              "calculated",
              "bldg",
              "premium"
          ]
      },
      "ll_bldg_count": {
          "type": "integer",
          "human": "Loveland Calculated Building Count",
          "description": "Total number of buildings on the parcel as calculated by Loveland",
          "tier": "premium",
          "categories": [
              "calculated",
              "bldg",
              "premium"
          ]
      },
      "cdl_raw": {
          "type": "text",
          "human": "Cropland Data Layer Raw Values",
          "description": "(Planned to populate Q3 2021) This is an array of [value,percentage] pairs that represent the pixel classes present in the parcel and their percentage of the total pixels.",
          "examples": [
              [
                  [
                      "36",
                      "60.0"
                  ],
                  [
                      "75",
                      "20.0"
                  ],
                  [
                      "87",
                      "10.0"
                  ],
                  [
                      "190",
                      "10.0"
                  ]
              ]
          ],
          "tier": "premium",
          "categories": [
              "calculated",
              "cdl",
              "premium"
          ]
      },
      "cdl_majority_category": {
          "type": "text",
          "human": "Cropland Data Layer Majority Category",
          "description": "(Planned to populate Q3 2021) This is the human readable Category name for the land cover type that is most common on the parcel.",
          "examples": [
              "Alfalfa"
          ],
          "tier": "premium",
          "categories": [
              "calculated",
              "cdl",
              "premium"
          ]
      },
      "cdl_majority_percent": {
          "type": "double precision",
          "human": "Cropland Data Layer Majority Percent",
          "description": "(Planned to populate Q3 2021) This is the actual percentage of pixels for the majority category.",
          "examples": [
              "60.0"
          ],
          "tier": "premium",
          "categories": [
              "calculated",
              "cdl",
              "premium"
          ]
      },
      "cdl_date": {
          "type": "text",
          "human": "Cropland Data Layer Date",
          "description": "(Planned to populate Q3 2021) The year of the Cropland Data Layer data set the current attributes are derived from.",
          "examples": [
              "2021"
          ],
          "tier": "premium",
          "categories": [
              "calculated",
              "cdl",
              "premium"
          ]
      },
      "reviseddate": {
          "type": "date",
          "human": "Date of Last Revision",
          "description": "The last date of last revision as provided by the county assessor's office if available.",
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "path": {
          "type": "text",
          "human": "Parcel Path",
          "description": "Loveland's human-readable identifier for this parcel. Not guaranteed to be stable between updates.",
          "examples": [
              "/us/mi/wayne/detroit/123",
              "/us/ny/new-york/manhattan/375553"
          ],
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "ll_stable_id": {
          "type": "text",
          "human": "Stable ID Status",
          "description": "Indicates if the path and ll_uuid values have changed during the last refresh from the county. A value of 'preserved' means the 'll_uuid' was matched during county refresh to the previous data. A 'null' indicates a new ll_uuid was generated because the new data was not matched to the existing data during the county data refresh process.",
          "examples": [
              "preserved (if unchanged)",
              null
          ],
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "ll_uuid": {
          "type": "uuid",
          "default": "uuid_generate_v4()",
          "human": "UUID",
          "description": "Uniquely identifies a single parcel with a v4 uuid. A stable parcel id across county data refreshes. This field should be used for tracking individual parcels.",
          "examples": [
              "4cc9eda6-883c-4f38-9a07-b44900a64b16"
          ],
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "ll_updated_at": {
          "type": "timestamp with time zone",
          "default": "now()",
          "human": "Updated At",
          "description": "Timestamp of last update of any kind to this row, internal changes to row, and/or county updates.",
          "examples": [
              "2019-06-06 12:45:21.285102-04"
          ],
          "tier": "standard",
          "categories": [
              "core"
          ]
      },
      "dpv_status": {
          "type": "text",
          "human": "USPS Delivery Point Validation",
          "examples": [
              "V",
              "N"
          ],
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "dpv_codes": {
          "type": "text",
          "human": "Delivery Point Validation Codes",
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "dpv_notes": {
          "type": "text",
          "human": "Delivery Point Validation Notes",
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "dpv_type": {
          "type": "text",
          "human": "Delivery Point Match Type",
          "examples": [
              "H (High Rise)",
              "S (Street)"
          ],
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "cass_errorno": {
          "type": "text",
          "human": "CASS Error Codes",
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "rdi": {
          "type": "text",
          "human": "Residential Delivery Indicator",
          "examples": [
              "Y",
              "N"
          ],
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "usps_vacancy": {
          "type": "text",
          "human": "USPS Vacancy Indicator",
          "examples": [
              "Y"
          ],
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "usps_vacancy_date": {
          "type": "date",
          "human": "USPS Vacancy Indicator Date",
          "description": "Date the vacancy indicator was collected",
          "tier": "premium",
          "categories": [
              "usps",
              "premium"
          ]
      },
      "lbcs_activity": {
          "type": "numeric",
          "human": "Land Use Code: Activity",
          "description": "Actual activity on land, eg farming, shopping, manufacturing.",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_activity_desc": {
          "type": "text",
          "human": "Land Use Code Description: Activity",
          "description": "Description of the LBCS numeric code",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_function": {
          "type": "numeric",
          "human": "Land Use Code: Function",
          "description": "Economic function or type of establishment, eg agricultural, commercial, industrial",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_function_desc": {
          "type": "text",
          "human": "Land Use Code Description: Function",
          "description": "Economic function or type of establishment, eg agricultural, commercial, industrial",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_structure": {
          "type": "numeric",
          "human": "Land Use Code: Structure",
          "description": "Type of structure or building, eg single-family house, office building, warehouse",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_structure_desc": {
          "type": "text",
          "human": "Land Use Code Description: Structure",
          "description": "Type of structure or building, eg single-family house, office building, warehouse",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_site": {
          "type": "numeric",
          "human": "Land Use Code: Site",
          "description": "What is on the land",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_site_desc": {
          "type": "text",
          "human": "Land Use Code Description: Site",
          "description": "What is on the land",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_ownership": {
          "type": "numeric",
          "human": "Land Use Code: Ownership",
          "description": "Ownership structure, eg public, private",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      },
      "lbcs_ownership_desc": {
          "type": "text",
          "human": "Land Use Code Description: Ownership",
          "description": "Ownership structure, eg public, private",
          "link": "https://support.landgrid.com/articles/lbcs-keys/",
          "tier": "premium",
          "categories": [
              "lbcs",
              "premium"
          ]
      }
  }
}
  

Parcels + Matched Building Footprints

Requests

If you have chosen our Regrid Parcel Data + Matched Building Footprints API, then by default any of the above Parcel API endpoints will also return building data. This can be controlled with the following parameter:

  • matched_buildings: Set to false to disable building footprint data in the response. Default is true when the account supports it.

Response format

In the standard response format, results is an array of parcel GeoJSON features. When matched building footprint data is also returned, there will be an additional top-level buildings array of GeoJSON Features. Each Feature in the buildings array will be a building record.

  • See the Buildings Schema document for descriptions of the properties of each building GeoJSON Feature.
  • Each building has one or more ll_uuids listed in its properties. These specify which of the parcels contain or overlap these building footprints and correspond to the ll_uuid field in each of the parcel results.

An example response is below, with coordinates and parcel fields removed for brevity:

Example response:
  {
    "status": "ok",
    "results": [
      {
        "type": "Feature",
        "geometry": {
          "type": "Polygon",
          "coordinates": [ ]
        },
        "properties": {
          "headline": "758 N Larrabee St",
          "path": "/us/il/cook/chicago/384636",
          "fields": { },
          "field_labels": { },
          "context": { },
          "ll_uuid": "e753a02b-a911-4ef4-826b-f7adc71e35d3"
        },
        "id": 384636
      }
    ],
    "buildings": [
      {
        "type": "Feature",
        "geometry": {
          "type": "Polygon",
          "coordinates": [
            [
              [
                -87.643172927,
                41.8958528640001
              ],
              [
                -87.64317102099994,
                41.8957157240001
              ],
              [
                -87.64319676699995,
                41.8957155300001
              ],
              [
                -87.643194921,
                41.895582807
              ],
              [
                -87.643259287,
                41.8955823220001
              ],
              [
                -87.643258628,
                41.895534921
              ],
              [
                -87.64323288199995,
                41.895535115
              ],
              [
                -87.643231959,
                41.895468754
              ],
              [
                -87.643618152,
                41.895465841
              ],
              [
                -87.643618094,
                41.895461713
              ],
              [
                -87.643812708,
                41.895458841
              ],
              [
                -87.643814608,
                41.8955833410001
              ],
              [
                -87.64381930699994,
                41.8958766420001
              ],
              [
                -87.643836103,
                41.896345947
              ],
              [
                -87.643688345,
                41.896347061
              ],
              [
                -87.643687818,
                41.8963091410001
              ],
              [
                -87.64364919799993,
                41.8963094320001
              ],
              [
                -87.643649792,
                41.8963520930001
              ],
              [
                -87.64318829,
                41.896355574
              ],
              [
                -87.643181607,
                41.8961376410001
              ],
              [
                -87.64317840699994,
                41.896031642
              ],
              [
                -87.64317490799993,
                41.895916642
              ],
              [
                -87.643172927,
                41.8958528640001
              ]
            ]
          ]
        },
        "properties": {
          "ed_str_uuid": "c7c9f1a0-e035-11eb-9390-989096a9a072",
          "ed_bld_uuid": "dab689b4-e035-11eb-adf3-989096a9a072",
          "ed_geoid": "17031",
          "ed_lat": 41.8958966420001,
          "ed_lon": -87.6434971547822,
          "ed_bldg_footprint_sqft": 55507,
          "ed_source": "Aerial Imagery",
          "ed_source_date": "2019-08-01 20:00:00 -0400",
          "ll_uuids": [
            "e753a02b-a911-4ef4-826b-f7adc71e35d3"
          ]
        },
        "id": 413621873
      }
    ]
  }
  

Parcels + Matched Secondary Addresses

Requests

If your account has Matched Secondary Addresses enabled, then by default any of the Parcel API endpoints will include these addresses. You can select this per-call with the following query parameter:

  • matched_addresses: Set to false to disable matched addresses data in the response. Default is true when the account supports it.

Response format

In the standard response format, results is an array of parcel GeoJSON features. The secondary addresses will appear in a parcel feature's properties.addresses array.

A sample response, with some fields abbreviated for brevity:

{
  "status": "ok",
  "results": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [ ]
      },
      "properties": {
        "headline": "1435 Randolph St",
        "path": "/us/mi/wayne/detroit/182127",
        "fields": {
          "ogc_fid": 182127,
          "geoid": "26163",
          "parcelnumb": "01003946-7",
          "usecode": "22420"
        },
        "field_labels": { },
        "context": { },
        "ll_uuid": "27cb36f3-75e5-4390-9b8f-d4755b8beaa9",
        "addresses": [
          {
            "a_id": "84157777",
            "a_address": "1435 Randolph St Ste 202",
            "a_saddno": "1435",
            "a_saddpref": null,
            "a_saddstr": "Randolph",
            "a_saddsttyp": "St",
            "a_saddstsuf": null,
            "a_sunit": "Ste 202",
            "a_szip5": "48226",
            "a_szip": "48226-2257",
            "a_carte": "C025",
            "a_crtype": "C",
            "a_scity": "Detroit",
            "a_state2": "MI",
            "a_county": "WAYNE",
            "a_delvseqno": "00189",
            "a_usps_elotseq": "0155",
            "a_usps_elotsort": "A",
            "a_resbus": "B",
            "a_pmbdesc": null,
            "a_pmbno": null,
            "a_dpv_confirm": "Y",
            "a_dpv_footnotes": "AABB",
            "a_default_match": "0",
            "a_lacsflag": "0",
            "a_usps_vacancy": "N",
            "a_nostats": "Y",
            "a_error_code": "0",
            "a_extrainfo": null,
            "a_dpv_type": "H",
            "a_geocodetype": "LI",
            "a_moddate": "Oct 22 2021  6:52AM",
            "a_census_blockgroup": "261635172002",
            "a_lat": "42.335614",
            "a_lon": "-83.045687",
            "a_geoid": "26163",
            "ll_uuid": "27cb36f3-75e5-4390-9b8f-d4755b8beaa9"
          },
          {
            "a_id": "84157778",
            "a_address": "1435 Randolph St Ste 203",
            "a_saddno": "1435",
            "a_saddpref": null,
            "a_saddstr": "Randolph",
            "a_saddsttyp": "St",
            "a_saddstsuf": null,
            "a_sunit": "Ste 203",
            "a_szip5": "48226",
            "etc": "etc"
          }
        ]
      },
      "id": 182127
    }
  ]
}

Parcels + Enhanced Ownership

Requests

If your account has Enhanced Ownership enabled, then by default any of the Parcel API endpoints will include this extra ownership data. You can select this per-call with the following query parameter:

  • enhanced_ownership: Set to false to disable enhanced ownership data in the response. Default is true when the account supports it.

Response format

In the standard response format, results is an array of parcel GeoJSON features. The enhanced ownership will appear in a parcel feature's properties.enhanced_ownership array.

A sample response, with some fields abbreviated for brevity:

{
  "status": "ok",
  "results": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [ ]
      },
      "properties": {
        "headline": "1435 Randolph St",
        "path": "/us/mi/wayne/detroit/182127",
        "fields": {
          "ogc_fid": 182127,
          "geoid": "26163",
          "parcelnumb": "01003946-7",
          "usecode": "22420"
        },
        "field_labels": { },
        "context": { },
        "ll_uuid": "83cf8982-b8f8-415e-8cba-f388978f7367",
        "enhanced_ownership": [
          {
            "eo_owner": "HUYNH COMPANYLLC",
            "eo_ownerfirst": "HUYNH",
            "eo_ownermiddle": null,
            "eo_ownerlast": "COMPANYLLC",
            "eo_ownersuffix": null,
            "eo_owner2": "BUI COMPANYLLC",
            "eo_owner2first": "BUI",
            "eo_owner2middle": null,
            "eo_owner2last": "COMPANYLLC",
            "eo_owner2suffix": null,
            "eo_owner3": "KAR WASH KWIK",
            "eo_owner3first": "KAR",
            "eo_owner3middle": "WASH",
            "eo_owner3suffix": "KWIK",
            "eo_owner3last": null,
            "eo_owner4": null,
            "eo_owner4first": null,
            "eo_owner4middle": null,
            "eo_owner4last": null,
            "eo_owner4suffix": null,
            "eo_mail_county": "HARRIS",
            "eo_mail_geoid": "48201",
            "eo_mail_address": "9534 BENDING WILLOW LN",
            "eo_mail_addno": "9534",
            "eo_mail_addpref": null,
            "eo_mail_addstr": "BENDING WILLOW",
            "eo_mail_addstsuf": "LN",
            "eo_mail_adddir": null,
            "eo_mail_unitpref": null,
            "eo_mail_unit": null,
            "eo_mail_city": "HOUSTON",
            "eo_mail_state2": "TX",
            "eo_mail_zip": "77064",
            "eo_mail_zip4": "5736",
            "eo_mail_carte": "C016",
            "eo_mail_addressinfoformat": "S",
            "eo_deedowner": "HUYNH BUI COMPANYLLC KAR WASH",
            "eo_deedownerfirst": "HUYNH",
            "eo_deedownermiddle": "BUI",
            "eo_deedownerlast": "COMPANYLLC KAR WASH",
            "eo_deedownersuffix": null,
            "eo_deedowner2": "KWIK KAR WASH",
            "eo_deedowner2first": "KWIK",
            "eo_deedowner2middle": "KAR",
            "eo_deedowner2last": "WASH",
            "eo_deedowner2suffix": null,
            "eo_deedowner3": null,
            "eo_deedowner3first": null,
            "eo_deedowner3middle": null,
            "eo_deedowner3last": null,
            "eo_deedowner3suffix": null,
            "eo_deedowner4": null,
            "eo_deedowner4first": null,
            "eo_deedowner4middle": null,
            "eo_deedowner4last": null,
            "eo_deedowner4suffix": null,
            "eo_lastrefresh": "12-14-2022",
            "ll_uuid": "83cf8982-b8f8-415e-8cba-f388978f7367",
            "attom_id": "166499168"
          }
        ],
      },
      "id": 182127
    }
  ]
}

County metadata (verse) endpoint

This endpoint allows you to retrieve all records from our verse table as described in our verse schema. These records are primarily counties in the United States with some cities when that is how data is reported.

The response is formatted as a list of GeoJSON features as shown in sample results below.

Note for bulk data customers

This endpoint may reflect data updates before they are available in bulk files. The verse file included with your bulk data deliveries will always reflect the current state of data available to you.

HTTP API request general form

GET /api/v1/verse.json

Query parameters

  • with_geometry: Geometry (simplified county shape) will not be returned by default unless this field is included with a true value.

Example API request

GET https://app.regrid.com/api/v1/verse.json?with_geometry=true

Example results

{
    "status": "ok",
    "results": [
                    {
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [
                            -96.90121,
                            42.090481
                        ],
                        [
                            -97.368404,
                            42.090922
                        ],
                        [
                            -97.367724,
                            42.351861
                        ],
                        [
                            -97.017789,
                            42.351347
                        ],
                        [
                            -97.01773,
                            42.264453
                        ],
                        [
                            -96.822497,
                            42.264292
                        ],
                        [
                            -96.82367,
                            42.090411
                        ],
                        [
                            -96.90121,
                            42.090481
                        ]
                    ]
                ]
            },
            "properties": {
                "id": 1945,
                "path": "/us/ne/wayne",
                "county": "Wayne",
                "state": "NE",
                "seat": "Wayne",
                "population": 9367,
                "sqmi": 444,
                "geoid": "31179",
                "city": null,
                "table_name": "ne_wayne20210209",
                "total_objects": 6630,
                "last_refresh": "2021-02-15",
                "canonical_path": "/us/ne/wayne",
                "filename_stem": "ne_wayne",
                "date_added": null,
                "shapefile_size_flag": null,
                "assessor_data_date": "2018-03-01",
                "usps_data_date": "2022-01-01"
            },
            "id": 1945
        },
        ...
  ]
}

Typeahead API

We offer an autocomplete/typeahead endpoint to complete and search addresses. Please see the Typeahead API documentation for details about this feature, and contact our sales team at parcels@regrid.com for a demo or to enable your account.

API Account Usage Stats endpoint

Used to check your current API usage stats to see how many requests, parcel records, and tiles have been used during this monthly cycle. You can also set an optional parameter to see your full usage history.

HTTP API request general form

GET /api/v1/usage.json?token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • full_history (optional): Set to true if you would like API usage history that goes beyond your current monthly cycle.

Response fields

  • cycle_dates: The start and end date of the current cycle.
  • cycle_usage: Counts of requests, results, and tiles used during the current cycle.
  • full_history: An array of stats for previous cycles. Only included if the optional full_history query param is set to true.
  • status: Whether the request succeeded or failed.

Example request:

GET https://app.regrid.com/api/v1/usage.json?token=<token>&full_history=true
Example response:
  {
  "status": "ok",
  "results": {
      "cycle_dates": "2021-08-28T10:19:04-04:00..2021-09-28T09:19:04-05:00",
      "cycle_usage": {
          "requests": 61,
          "results": 2675,
          "tiles": 236
      },
      "full_history": [
          {
              "begin_ts": 1630160344,
              "begin": "2021-8-28",
              "end": "2021-9-28",
              "total": {
                  "requests": 61,
                  "results": 2675,
                  "tiles": 236
              },
              "counts": [
                  {
                      "requests": 6,
                      "results": 32,
                      "date": "2021-9-2"
                  },
                  {
                      "date": "2021-9-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-31",
                      "requests": 35,
                      "results": 377,
                      "tiles": 185
                  },
                  {
                      "date": "2021-8-30",
                      "requests": 20,
                      "results": 2266,
                      "tiles": 51
                  },
                  {
                      "date": "2021-8-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-28",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  }
              ],
              "current": true,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1627481944,
              "begin": "2021-7-28",
              "end": "2021-8-28",
              "total": {
                  "requests": 326,
                  "results": 42883,
                  "tiles": 2204
              },
              "counts": [
                  {
                      "date": "2021-8-27",
                      "requests": 28,
                      "results": 905,
                      "tiles": 193
                  },
                  {
                      "date": "2021-8-26",
                      "requests": 12,
                      "results": 1307,
                      "tiles": 213
                  },
                  {
                      "date": "2021-8-25",
                      "requests": 0,
                      "results": 0,
                      "tiles": 19
                  },
                  {
                      "date": "2021-8-24",
                      "requests": 5,
                      "results": 628,
                      "tiles": 17
                  },
                  {
                      "date": "2021-8-23",
                      "requests": 80,
                      "results": 11358,
                      "tiles": 58
                  },
                  {
                      "date": "2021-8-22",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-21",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-20",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-19",
                      "requests": 85,
                      "results": 11751,
                      "tiles": 325
                  },
                  {
                      "date": "2021-8-18",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-17",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-16",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-15",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-11",
                      "requests": 2,
                      "results": 221,
                      "tiles": 32
                  },
                  {
                      "date": "2021-8-10",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-9",
                      "requests": 6,
                      "results": 1133,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-8",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-7",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-8-6",
                      "requests": 42,
                      "results": 6740,
                      "tiles": 50
                  },
                  {
                      "date": "2021-8-5",
                      "requests": 2,
                      "results": 338,
                      "tiles": 32
                  },
                  {
                      "date": "2021-8-4",
                      "requests": 42,
                      "results": 5229,
                      "tiles": 803
                  },
                  {
                      "date": "2021-8-3",
                      "requests": 12,
                      "results": 1831,
                      "tiles": 298
                  },
                  {
                      "date": "2021-8-2",
                      "requests": 10,
                      "results": 1442,
                      "tiles": 164
                  },
                  {
                      "date": "2021-8-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-31",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-30",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-28",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1624889944,
              "begin": "2021-6-28",
              "end": "2021-7-28",
              "total": {
                  "requests": 38,
                  "results": 4653,
                  "tiles": 1178
              },
              "counts": [
                  {
                      "date": "2021-7-27",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-26",
                      "requests": 0,
                      "results": 0,
                      "tiles": 173
                  },
                  {
                      "date": "2021-7-25",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-24",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-23",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-22",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-21",
                      "requests": 21,
                      "results": 2379,
                      "tiles": 598
                  },
                  {
                      "date": "2021-7-20",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-19",
                      "requests": 0,
                      "results": 0,
                      "tiles": 113
                  },
                  {
                      "date": "2021-7-18",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-17",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-16",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-15",
                      "requests": 0,
                      "results": 0,
                      "tiles": 57
                  },
                  {
                      "date": "2021-7-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-11",
                      "requests": 2,
                      "results": 272,
                      "tiles": 52
                  },
                  {
                      "date": "2021-7-10",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-8",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-7",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-6",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-5",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-4",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-3",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-7-2",
                      "requests": 0,
                      "results": 0,
                      "tiles": 24
                  },
                  {
                      "date": "2021-7-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-30",
                      "requests": 11,
                      "results": 1773,
                      "tiles": 60
                  },
                  {
                      "date": "2021-6-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 15
                  },
                  {
                      "date": "2021-6-28",
                      "requests": 4,
                      "results": 229,
                      "tiles": 86
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1622211544,
              "begin": "2021-5-28",
              "end": "2021-6-28",
              "total": {
                  "requests": 941,
                  "results": 115879,
                  "tiles": 6563
              },
              "counts": [
                  {
                      "date": "2021-6-27",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-26",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-25",
                      "requests": 18,
                      "results": 1788,
                      "tiles": 299
                  },
                  {
                      "date": "2021-6-24",
                      "requests": 24,
                      "results": 2121,
                      "tiles": 77
                  },
                  {
                      "date": "2021-6-23",
                      "requests": 127,
                      "results": 9775,
                      "tiles": 694
                  },
                  {
                      "date": "2021-6-22",
                      "requests": 61,
                      "results": 5749,
                      "tiles": 413
                  },
                  {
                      "date": "2021-6-21",
                      "requests": 10,
                      "results": 1353,
                      "tiles": 68
                  },
                  {
                      "date": "2021-6-20",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-19",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-18",
                      "requests": 5,
                      "results": 529,
                      "tiles": 146
                  },
                  {
                      "date": "2021-6-17",
                      "requests": 56,
                      "results": 3850,
                      "tiles": 226
                  },
                  {
                      "date": "2021-6-16",
                      "requests": 0,
                      "results": 0,
                      "tiles": 66
                  },
                  {
                      "date": "2021-6-15",
                      "requests": 19,
                      "results": 1928,
                      "tiles": 300
                  },
                  {
                      "date": "2021-6-14",
                      "requests": 8,
                      "results": 1045,
                      "tiles": 170
                  },
                  {
                      "date": "2021-6-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-11",
                      "requests": 8,
                      "results": 831,
                      "tiles": 119
                  },
                  {
                      "date": "2021-6-10",
                      "requests": 104,
                      "results": 11715,
                      "tiles": 390
                  },
                  {
                      "date": "2021-6-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-8",
                      "requests": 153,
                      "results": 22606,
                      "tiles": 1406
                  },
                  {
                      "date": "2021-6-7",
                      "requests": 140,
                      "results": 20313,
                      "tiles": 779
                  },
                  {
                      "date": "2021-6-6",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-5",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-4",
                      "requests": 208,
                      "results": 32276,
                      "tiles": 1410
                  },
                  {
                      "date": "2021-6-3",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-2",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-6-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-31",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-30",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-28",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1619619544,
              "begin": "2021-4-28",
              "end": "2021-5-28",
              "total": {
                  "requests": 1277,
                  "results": 148128,
                  "tiles": 4836
              },
              "counts": [
                  {
                      "date": "2021-5-27",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-26",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-25",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-24",
                      "requests": 215,
                      "results": 21103,
                      "tiles": 270
                  },
                  {
                      "date": "2021-5-23",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-22",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-21",
                      "requests": 371,
                      "results": 38068,
                      "tiles": 823
                  },
                  {
                      "date": "2021-5-20",
                      "requests": 215,
                      "results": 21088,
                      "tiles": 715
                  },
                  {
                      "date": "2021-5-19",
                      "requests": 27,
                      "results": 2494,
                      "tiles": 389
                  },
                  {
                      "date": "2021-5-18",
                      "requests": 6,
                      "results": 1179,
                      "tiles": 187
                  },
                  {
                      "date": "2021-5-17",
                      "requests": 2,
                      "results": 324,
                      "tiles": 194
                  },
                  {
                      "date": "2021-5-16",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-15",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-13",
                      "requests": 15,
                      "results": 2238,
                      "tiles": 496
                  },
                  {
                      "date": "2021-5-12",
                      "requests": 36,
                      "results": 5068,
                      "tiles": 480
                  },
                  {
                      "date": "2021-5-11",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-10",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-8",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-7",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-6",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-5",
                      "requests": 4,
                      "results": 695,
                      "tiles": 95
                  },
                  {
                      "date": "2021-5-4",
                      "requests": 61,
                      "results": 8418,
                      "tiles": 116
                  },
                  {
                      "date": "2021-5-3",
                      "requests": 0,
                      "results": 0,
                      "tiles": 17
                  },
                  {
                      "date": "2021-5-2",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-5-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-30",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-29",
                      "requests": 122,
                      "results": 17103,
                      "tiles": 266
                  },
                  {
                      "date": "2021-4-28",
                      "requests": 203,
                      "results": 30350,
                      "tiles": 788
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1616941144,
              "begin": "2021-3-28",
              "end": "2021-4-28",
              "total": {
                  "requests": 906,
                  "results": 80303,
                  "tiles": 5181
              },
              "counts": [
                  {
                      "date": "2021-4-27",
                      "requests": 283,
                      "results": 41999,
                      "tiles": 2003
                  },
                  {
                      "date": "2021-4-26",
                      "requests": 10,
                      "results": 912,
                      "tiles": 370
                  },
                  {
                      "date": "2021-4-25",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-24",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-23",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-22",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-21",
                      "requests": 93,
                      "results": 9976,
                      "tiles": 831
                  },
                  {
                      "date": "2021-4-20",
                      "requests": 50,
                      "results": 7672,
                      "tiles": 33
                  },
                  {
                      "date": "2021-4-19",
                      "requests": 55,
                      "results": 7347,
                      "tiles": 93
                  },
                  {
                      "date": "2021-4-18",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-17",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-16",
                      "requests": 285,
                      "results": 6773,
                      "tiles": 959
                  },
                  {
                      "date": "2021-4-15",
                      "requests": 77,
                      "results": 3371,
                      "tiles": 678
                  },
                  {
                      "date": "2021-4-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-11",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-10",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-8",
                      "requests": 0,
                      "results": 0,
                      "tiles": 28
                  },
                  {
                      "requests": 27,
                      "results": 114,
                      "tiles": 1,
                      "date": "2021-4-7"
                  },
                  {
                      "requests": 22,
                      "results": 1959,
                      "tiles": 131,
                      "date": "2021-4-6"
                  },
                  {
                      "date": "2021-4-4",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-3",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-2",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-4-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-31",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-30",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-28",
                      "requests": 4,
                      "results": 180,
                      "tiles": 54
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1614521944,
              "begin": "2021-2-28",
              "end": "2021-3-28",
              "total": {
                  "requests": 1306,
                  "results": 361557,
                  "tiles": 5484
              },
              "counts": [
                  {
                      "date": "2021-3-27",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-26",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-25",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-24",
                      "requests": 6,
                      "results": 725,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-23",
                      "requests": 118,
                      "results": 13590,
                      "tiles": 487
                  },
                  {
                      "date": "2021-3-22",
                      "requests": 13,
                      "results": 1101,
                      "tiles": 214
                  },
                  {
                      "date": "2021-3-21",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-20",
                      "requests": 4,
                      "results": 247,
                      "tiles": 16
                  },
                  {
                      "date": "2021-3-19",
                      "requests": 74,
                      "results": 17123,
                      "tiles": 976
                  },
                  {
                      "date": "2021-3-18",
                      "requests": 221,
                      "results": 51584,
                      "tiles": 383
                  },
                  {
                      "date": "2021-3-17",
                      "requests": 214,
                      "results": 28962,
                      "tiles": 415
                  },
                  {
                      "date": "2021-3-16",
                      "requests": 171,
                      "results": 60134,
                      "tiles": 441
                  },
                  {
                      "date": "2021-3-15",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-11",
                      "requests": 139,
                      "results": 50502,
                      "tiles": 329
                  },
                  {
                      "date": "2021-3-10",
                      "requests": 73,
                      "results": 40467,
                      "tiles": 363
                  },
                  {
                      "date": "2021-3-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 19
                  },
                  {
                      "date": "2021-3-8",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-7",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-6",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-3-5",
                      "requests": 43,
                      "results": 11997,
                      "tiles": 175
                  },
                  {
                      "date": "2021-3-4",
                      "requests": 138,
                      "results": 42237,
                      "tiles": 570
                  },
                  {
                      "date": "2021-3-3",
                      "requests": 0,
                      "results": 0,
                      "tiles": 1
                  },
                  {
                      "date": "2021-3-2",
                      "requests": 26,
                      "results": 13901,
                      "tiles": 270
                  },
                  {
                      "date": "2021-3-1",
                      "requests": 62,
                      "results": 26750,
                      "tiles": 823
                  },
                  {
                      "date": "2021-2-28",
                      "requests": 4,
                      "results": 2237,
                      "tiles": 2
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          },
          {
              "begin_ts": 1611929944,
              "begin": "2021-1-29",
              "end": "2021-2-28",
              "total": {
                  "requests": 2991,
                  "results": 1066066,
                  "tiles": 12863
              },
              "counts": [
                  {
                      "date": "2021-2-27",
                      "requests": 10,
                      "results": 5405,
                      "tiles": 5
                  },
                  {
                      "tiles": 558,
                      "requests": 305,
                      "results": 119597,
                      "date": "2021-2-26"
                  },
                  {
                      "date": "2021-2-25",
                      "requests": 974,
                      "results": 423965,
                      "tiles": 6937
                  },
                  {
                      "date": "2021-2-24",
                      "requests": 558,
                      "results": 302657,
                      "tiles": 1289
                  },
                  {
                      "date": "2021-2-23",
                      "requests": 349,
                      "results": 169523,
                      "tiles": 467
                  },
                  {
                      "date": "2021-2-22",
                      "requests": 369,
                      "results": 3449,
                      "tiles": 638
                  },
                  {
                      "date": "2021-2-21",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-20",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-19",
                      "requests": 1,
                      "results": 92,
                      "tiles": 1
                  },
                  {
                      "date": "2021-2-18",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-17",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-16",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-15",
                      "requests": 83,
                      "results": 10286,
                      "tiles": 69
                  },
                  {
                      "date": "2021-2-14",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-13",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-12",
                      "requests": 0,
                      "results": 0,
                      "tiles": 48
                  },
                  {
                      "date": "2021-2-11",
                      "requests": 0,
                      "results": 0,
                      "tiles": 1
                  },
                  {
                      "date": "2021-2-10",
                      "requests": 1,
                      "results": 144,
                      "tiles": 13
                  },
                  {
                      "date": "2021-2-9",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-8",
                      "requests": 8,
                      "results": 967,
                      "tiles": 29
                  },
                  {
                      "date": "2021-2-7",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-2-6",
                      "requests": 1,
                      "results": 128,
                      "tiles": 3
                  },
                  {
                      "date": "2021-2-5",
                      "requests": 77,
                      "results": 9794,
                      "tiles": 203
                  },
                  {
                      "date": "2021-2-4",
                      "requests": 4,
                      "results": 371,
                      "tiles": 25
                  },
                  {
                      "date": "2021-2-3",
                      "requests": 119,
                      "results": 14711,
                      "tiles": 932
                  },
                  {
                      "date": "2021-2-2",
                      "requests": 132,
                      "results": 4977,
                      "tiles": 880
                  },
                  {
                      "date": "2021-2-1",
                      "requests": 0,
                      "results": 0,
                      "tiles": 765
                  },
                  {
                      "date": "2021-1-31",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-1-30",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  },
                  {
                      "date": "2021-1-29",
                      "requests": 0,
                      "results": 0,
                      "tiles": 0
                  }
              ],
              "current": false,
              "paid": false,
              "trial": false
          }
      ]
  }
}
  

Reporting Data Issues to Regrid

This is an alpha endpoint and may change before release

You can report issues with specific parcels or general areas to us using this report endpoint. Reports help us prioritize updates. However, we cannot apply data received to this endpoint directly to our parcel data or respond individually to specific reports.

HTTP API request general form

POST /api/v1/report.json?token=<token>

Query parameters

  • token: Your Regrid assigned authorization token.
  • path: A path to a specific parcel or place
  • ll_uuid (optional): The ll_uuid of a parcel, if the report is for a specific parcel
  • comment (optional): String describing the issue
  • details (optional): A hash with details on specific fields. This hash only accepts standard column names as keys.

Response fields

  • status: Whether the request succeeded or failed.
  • message: Message on the status of the report.
  • id: ID of the new report.

Example request

POST https://app.regrid.com/api/v1/report.json?token=YOUR_TOKEN_HERE

{
  "path": "/us/al/elmore/eclectic/5",
  "ll_uuid": "8ba95684-e001-4362-801c-39f30a13bee4",
  "comment": "Property has a new owner",
  "details": {
    "owner": "Johnny Parcel",
    "saleprice": 200000
  }
}

Example response

{
    "status": "ok",
    "message": "Report received",
    "id": 2238
}

Platform / Library Specific Notes

Shapely

To create a shapely shape in Python from the array of coordinates that come as part of the GeoJSON response from the API, the coordinates list can not be passed into a MultiPolygon or Polygon constructor or it may return an error.

Instead try import shape from shapely.geometry and pass in the geojson response to that. The shapely library might have issues instantiating shapes from a list of coordinates versus directly from a geojson the other ways.

In this section