Bolt · Schema

payment-response-finalized

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string
id string
status string
transaction object
View JSON Schema on GitHub

JSON Schema

payment-response-finalized.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/payment-response-finalized",
  "title": "payment-response-finalized",
  "type": "object",
  "required": [
    ".tag",
    "status",
    "transaction"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "finalized"
      ],
      "example": "finalized",
      "x-order": 0
    },
    "id": {
      "type": "string",
      "format": "id",
      "example": "iKv7t5bgt1gg",
      "x-order": 1
    },
    "status": {
      "type": "string",
      "enum": [
        "success"
      ],
      "example": "success"
    },
    "transaction": {
      "$ref": "#/components/schemas/transaction"
    }
  }
}