Properties
| Name | Type | Description |
|---|---|---|
| ref | string | |
| cass | object | |
| cBlk | string | Census block group |
| cTrc | string | Census tract |
| err | string | Error message if geocoding failed |
| geo | boolean | Whether geocoding was successful |
| lat | number | |
| long | number | |
| pcd | integer | PCode for the determined jurisdiction |
| fips | string | FIPS code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeocodeResult",
"title": "GeocodeResult",
"type": "object",
"properties": {
"ref": {
"type": "string"
},
"cass": {
"type": "object",
"properties": {
"addr": {
"type": "string"
},
"city": {
"type": "string"
},
"st": {
"type": "string"
},
"zip": {
"type": "string"
}
}
},
"cBlk": {
"type": "string",
"description": "Census block group"
},
"cTrc": {
"type": "string",
"description": "Census tract"
},
"err": {
"type": "string",
"description": "Error message if geocoding failed"
},
"geo": {
"type": "boolean",
"description": "Whether geocoding was successful"
},
"lat": {
"type": "number",
"format": "double"
},
"long": {
"type": "number",
"format": "double"
},
"pcd": {
"type": "integer",
"description": "PCode for the determined jurisdiction"
},
"fips": {
"type": "string",
"description": "FIPS code"
}
}
}