Adyen · JSON Structure

Authentication Webhooks Purchase Info Structure

PurchaseInfo schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

date merchantName originalAmount

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/authentication-webhooks-purchase-info-structure.json",
  "description": "PurchaseInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "date": {
      "description": "Date of the purchase.",
      "type": "string"
    },
    "merchantName": {
      "description": "Name of the merchant.",
      "type": "string"
    },
    "originalAmount": {
      "description": "Amount of the purchase.",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "required": [
    "merchantName",
    "date",
    "originalAmount"
  ],
  "name": "PurchaseInfo"
}