Adyen · JSON Structure

Terminal Payment Instrument Data Structure

Sent in the result of the payment transaction. For a card, it could also be sent in the CardAcquisition response, to be processed by the Sale System. Data related to the instrument of payment for the transaction.

Type: object Properties: 6 Required: 1
PaymentsFinancial ServicesFintech

PaymentInstrumentData is a JSON Structure definition published by Adyen, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

PaymentInstrumentType ProtectedCardData CardData CheckData MobileData StoredValueAccountID

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-payment-instrument-data-structure.json",
  "description": "Sent in the result of the payment transaction. For a card, it could also be sent in the CardAcquisition response, to be processed by the Sale System. Data related to the instrument of payment for the transaction.",
  "type": "object",
  "properties": {
    "PaymentInstrumentType": {
      "$ref": "#/components/schemas/PaymentInstrumentType"
    },
    "ProtectedCardData": {
      "type": "string"
    },
    "CardData": {
      "$ref": "#/components/schemas/CardData"
    },
    "CheckData": {
      "$ref": "#/components/schemas/CheckData"
    },
    "MobileData": {
      "$ref": "#/components/schemas/MobileData"
    },
    "StoredValueAccountID": {
      "$ref": "#/components/schemas/StoredValueAccountID"
    }
  },
  "required": [
    "PaymentInstrumentType"
  ],
  "name": "PaymentInstrumentData"
}