Properties
| Name | Type | Description |
|---|---|---|
| ref | string | Reference ID |
| cass | boolean | Whether to return CASS-certified address |
| addr | string | Street address |
| city | string | |
| st | string | State abbreviation |
| zip | string | ZIP code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeocodeRequest",
"title": "GeocodeRequest",
"type": "object",
"properties": {
"ref": {
"type": "string",
"description": "Reference ID"
},
"cass": {
"type": "boolean",
"description": "Whether to return CASS-certified address"
},
"addr": {
"type": "string",
"description": "Street address"
},
"city": {
"type": "string"
},
"st": {
"type": "string",
"description": "State abbreviation"
},
"zip": {
"type": "string",
"description": "ZIP code"
}
}
}