Adyen · Schema

PurchaseInfo

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

adyen-purchaseinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseInfo",
  "title": "PurchaseInfo",
  "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"
  ],
  "type": "object"
}