Adyen · Schema

PurchaseInfo

PurchaseInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
date string Date of the purchase.
merchantName string Name of the merchant.
originalAmount object Amount of the purchase.
View JSON Schema on GitHub

JSON Schema

authentication-webhooks-purchase-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/authentication-webhooks-purchase-info-schema.json",
  "title": "PurchaseInfo",
  "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"
  ]
}