Results of card verification checks.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CardVerification", "title": "CardVerification", "type": "object", "description": "Results of card verification checks.", "properties": { "cvv": { "type": "string", "description": "CVV verification result.", "enum": [ "match", "noMatch", "notChecked", "unavailable" ] }, "addressLine1": { "type": "string", "description": "Address line 1 AVS verification result.", "enum": [ "match", "noMatch", "notChecked", "unavailable" ] }, "postalCode": { "type": "string", "description": "Postal code AVS verification result.", "enum": [ "match", "noMatch", "notChecked", "unavailable" ] } } }