Adyen · JSON Structure

Notification Webhooks Amount Structure

Amount schema from Adyen API

Type: object Properties: 2 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

currency value

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/notification-webhooks-amount-structure.json",
  "description": "Amount schema from Adyen API",
  "properties": {
    "currency": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).",
      "maxLength": 3,
      "minLength": 3,
      "type": "string"
    },
    "value": {
      "description": "The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).",
      "type": "int64"
    }
  },
  "required": [
    "value",
    "currency"
  ],
  "type": "object",
  "name": "Amount"
}