{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AVSResult", "title": "AVS Results", "description": "Address Verification Service (AVS) result from the payment gateway.", "type": "object", "properties": { "code": { "description": "AVS code.", "type": "string" }, "message": { "description": "AVS message.", "type": "string" }, "street_match": { "description": "AVS Code for street matching result.", "type": "string" }, "postal_match": { "description": "AVS Code for postal matching result.", "type": "string" } }, "x-internal": false }