Bolt · Schema

payment-event-data

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
cart object
payment_type string The chosen method of payment.
View JSON Schema on GitHub

JSON Schema

payment-event-data.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/payment-event-data",
  "title": "payment-event-data",
  "type": "object",
  "required": [
    "cart"
  ],
  "properties": {
    "cart": {
      "$ref": "#/components/schemas/cart-2"
    },
    "payment_type": {
      "type": "string",
      "description": "The chosen method of payment.",
      "example": "Credit Card"
    }
  }
}