Regrid · Schema
Regrid Parcel Properties
JSON Schema for the properties object of a Regrid parcel GeoJSON Feature.
ParcelsLand DataProperty DataGeoJSONReal EstateZoningOwnershipGeospatialMappingTiles
Properties
| Name | Type | Description |
|---|---|---|
| ll_uuid | string | Regrid universal unique identifier for the parcel |
| ll_stable_id | string | Stable identifier that persists across data updates |
| path | string | Regrid canonical path (e.g., us/ca/san-francisco/1234567890) |
| ll_updated_at | string | Timestamp of last Regrid data update |
| ll_gisacre | number | Parcel area in acres (GIS-calculated) |
| ll_gissqft | number | Parcel area in square feet (GIS-calculated) |
| ll_bldg_count | integer | Number of buildings on the parcel |
| ll_address | string | Regrid standardized parcel address |
| ll_addresstype | string | Address type classification |
| ll_addr_unit | stringnull | Unit/suite/apt number for multi-unit parcels |
| parcelnumb | string | Assessor Parcel Number (APN) as reported by the county |
| parcelnumb_no_formatting | string | APN with all formatting characters stripped |
| state_abbr | string | Two-letter US state abbreviation |
| county | string | County name |
| city | string | City name |
| cityname | string | Formatted city name |
| state2 | string | Full state name |
| saddno | string | Street address number |
| saddpref | stringnull | Street direction prefix (N, S, E, W, NE, NW, SE, SW) |
| saddstr | string | Street name |
| saddsttyp | string | Street type abbreviation (St, Ave, Blvd, Dr, etc.) |
| saddstsuf | stringnull | Street direction suffix |
| sunit | stringnull | Unit designator |
| szip | string | 5-digit ZIP code |
| szip4 | stringnull | ZIP+4 extension code |
| address | string | Full site address string |
| scity | string | Site city name |
| mail_address | stringnull | Owner mailing address |
| mail_city | stringnull | Owner mailing city |
| mail_state2 | stringnull | Owner mailing state abbreviation |
| mail_zip | stringnull | Owner mailing ZIP code |
| mail_country | stringnull | Owner mailing country |
| owner | stringnull | Primary owner name |
| owner2 | stringnull | Secondary owner name |
| owner3 | stringnull | Tertiary owner name |
| owntype | stringnull | Owner type classification |
| zoning | stringnull | Zoning code as reported by the assessor |
| zoning_description | stringnull | Standardized zoning description |
| usecode | stringnull | Land use code as reported by the assessor |
| usedesc | stringnull | Land use description |
| structno | integernull | Number of structures on the parcel |
| yearbuilt | integernull | Year of primary structure construction |
| numstories | numbernull | Number of stories in the primary structure |
| numunits | integernull | Number of units in the building |
| acres | numbernull | Parcel area in acres (assessor-reported) |
| sqft | numbernull | Parcel area in square feet (assessor-reported) |
| improvval | numbernull | Assessed improvement (structure) value in USD |
| landval | numbernull | Assessed land value in USD |
| parval | numbernull | Total assessed parcel value in USD |
| saleprice | numbernull | Most recent recorded sale price in USD |
| saledate | stringnull | Most recent recorded sale date |
| parvaltype | stringnull | Type of assessed value (market, appraised, taxable, etc.) |
| taxyear | integernull | Tax assessment year |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/regrid/json-schema/regrid-parcel-properties.json",
"title": "Regrid Parcel Properties",
"description": "JSON Schema for the properties object of a Regrid parcel GeoJSON Feature.",
"type": "object",
"properties": {
"ll_uuid": {
"type": "string",
"format": "uuid",
"description": "Regrid universal unique identifier for the parcel"
},
"ll_stable_id": {
"type": "string",
"description": "Stable identifier that persists across data updates"
},
"path": {
"type": "string",
"description": "Regrid canonical path (e.g., us/ca/san-francisco/1234567890)"
},
"ll_updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp of last Regrid data update"
},
"ll_gisacre": {
"type": "number",
"description": "Parcel area in acres (GIS-calculated)",
"minimum": 0
},
"ll_gissqft": {
"type": "number",
"description": "Parcel area in square feet (GIS-calculated)",
"minimum": 0
},
"ll_bldg_count": {
"type": "integer",
"description": "Number of buildings on the parcel",
"minimum": 0
},
"ll_address": {
"type": "string",
"description": "Regrid standardized parcel address"
},
"ll_addresstype": {
"type": "string",
"description": "Address type classification"
},
"ll_addr_unit": {
"type": ["string", "null"],
"description": "Unit/suite/apt number for multi-unit parcels"
},
"parcelnumb": {
"type": "string",
"description": "Assessor Parcel Number (APN) as reported by the county"
},
"parcelnumb_no_formatting": {
"type": "string",
"description": "APN with all formatting characters stripped"
},
"state_abbr": {
"type": "string",
"minLength": 2,
"maxLength": 2,
"description": "Two-letter US state abbreviation"
},
"county": {
"type": "string",
"description": "County name"
},
"city": {
"type": "string",
"description": "City name"
},
"cityname": {
"type": "string",
"description": "Formatted city name"
},
"state2": {
"type": "string",
"description": "Full state name"
},
"saddno": {
"type": "string",
"description": "Street address number"
},
"saddpref": {
"type": ["string", "null"],
"description": "Street direction prefix (N, S, E, W, NE, NW, SE, SW)"
},
"saddstr": {
"type": "string",
"description": "Street name"
},
"saddsttyp": {
"type": "string",
"description": "Street type abbreviation (St, Ave, Blvd, Dr, etc.)"
},
"saddstsuf": {
"type": ["string", "null"],
"description": "Street direction suffix"
},
"sunit": {
"type": ["string", "null"],
"description": "Unit designator"
},
"szip": {
"type": "string",
"pattern": "^\\d{5}$",
"description": "5-digit ZIP code"
},
"szip4": {
"type": ["string", "null"],
"pattern": "^\\d{4}$",
"description": "ZIP+4 extension code"
},
"address": {
"type": "string",
"description": "Full site address string"
},
"scity": {
"type": "string",
"description": "Site city name"
},
"mail_address": {
"type": ["string", "null"],
"description": "Owner mailing address"
},
"mail_city": {
"type": ["string", "null"],
"description": "Owner mailing city"
},
"mail_state2": {
"type": ["string", "null"],
"description": "Owner mailing state abbreviation"
},
"mail_zip": {
"type": ["string", "null"],
"description": "Owner mailing ZIP code"
},
"mail_country": {
"type": ["string", "null"],
"description": "Owner mailing country"
},
"owner": {
"type": ["string", "null"],
"description": "Primary owner name"
},
"owner2": {
"type": ["string", "null"],
"description": "Secondary owner name"
},
"owner3": {
"type": ["string", "null"],
"description": "Tertiary owner name"
},
"owntype": {
"type": ["string", "null"],
"description": "Owner type classification"
},
"zoning": {
"type": ["string", "null"],
"description": "Zoning code as reported by the assessor"
},
"zoning_description": {
"type": ["string", "null"],
"description": "Standardized zoning description"
},
"usecode": {
"type": ["string", "null"],
"description": "Land use code as reported by the assessor"
},
"usedesc": {
"type": ["string", "null"],
"description": "Land use description"
},
"structno": {
"type": ["integer", "null"],
"description": "Number of structures on the parcel",
"minimum": 0
},
"yearbuilt": {
"type": ["integer", "null"],
"description": "Year of primary structure construction",
"minimum": 1600,
"maximum": 2100
},
"numstories": {
"type": ["number", "null"],
"description": "Number of stories in the primary structure",
"minimum": 0
},
"numunits": {
"type": ["integer", "null"],
"description": "Number of units in the building",
"minimum": 0
},
"acres": {
"type": ["number", "null"],
"description": "Parcel area in acres (assessor-reported)",
"minimum": 0
},
"sqft": {
"type": ["number", "null"],
"description": "Parcel area in square feet (assessor-reported)",
"minimum": 0
},
"improvval": {
"type": ["number", "null"],
"description": "Assessed improvement (structure) value in USD",
"minimum": 0
},
"landval": {
"type": ["number", "null"],
"description": "Assessed land value in USD",
"minimum": 0
},
"parval": {
"type": ["number", "null"],
"description": "Total assessed parcel value in USD",
"minimum": 0
},
"saleprice": {
"type": ["number", "null"],
"description": "Most recent recorded sale price in USD",
"minimum": 0
},
"saledate": {
"type": ["string", "null"],
"description": "Most recent recorded sale date"
},
"parvaltype": {
"type": ["string", "null"],
"description": "Type of assessed value (market, appraised, taxable, etc.)"
},
"taxyear": {
"type": ["integer", "null"],
"description": "Tax assessment year"
}
},
"required": [
"ll_uuid",
"path",
"parcelnumb",
"state_abbr",
"county"
],
"additionalProperties": true
}