BigCommerce · Schema

AVS Results

Address Verification Service (AVS) result from the payment gateway.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
code string AVS code.
message string AVS message.
street_match string AVS Code for street matching result.
postal_match string AVS Code for postal matching result.
View JSON Schema on GitHub

JSON Schema

bigcommerce-avsresult-schema.json Raw ↑
{
  "$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
}