{ "$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" } } }