BigCommerce · Schema

CVV Result

Card Verification Value result from the payment gateway.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
code string CVV code.
message string CVV message.
View JSON Schema on GitHub

JSON Schema

bigcommerce-cvvresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CVVResult",
  "title": "CVV Result",
  "description": "Card Verification Value result from the payment gateway.",
  "type": "object",
  "properties": {
    "code": {
      "description": "CVV code.",
      "type": "string"
    },
    "message": {
      "description": "CVV message.",
      "type": "string"
    }
  },
  "x-internal": false
}