{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddressLookupErrorObject", "title": "AddressLookupErrorObject", "type": "object", "description": "Object containing details about an error encountered during address lookup.", "properties": { "code": { "type": "string", "description": "Error code.", "example": "PMP4004" }, "title": { "type": "string", "description": "Error title.", "example": "INVALID_STREET_ADDRESS" }, "detail": { "type": "string", "description": "Detailed error message.", "example": "The street address provided is invalid." } } }