Bolt · Schema

payment-response-three-ds-required

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
.tag string
id string
step_up_url string
jwt_payload string
View JSON Schema on GitHub

JSON Schema

payment-response-three-ds-required.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/payment-response-three-ds-required",
  "title": "payment-response-three-ds-required",
  "type": "object",
  "required": [
    ".tag",
    "step_up_url",
    "jwt_payload"
  ],
  "properties": {
    ".tag": {
      "type": "string",
      "enum": [
        "three_ds_required"
      ],
      "example": "three_ds_required"
    },
    "id": {
      "type": "string",
      "format": "id",
      "example": "iKv7t5bgt1gg",
      "x-order": 1
    },
    "step_up_url": {
      "type": "string",
      "format": "url",
      "example": "https://www.example.com/payments/finalize"
    },
    "jwt_payload": {
      "type": "string",
      "example": "eyJ0cmFuc"
    }
  }
}