Adyen · Schema

Amount

Amount schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
currency string The type of currency. Must be EUR (or EUR equivalent)
value integer Total value of amount. Must be >= 0
View JSON Schema on GitHub

JSON Schema

legal-entity-amount-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/legal-entity-amount-schema.json",
  "title": "Amount",
  "description": "Amount schema from Adyen API",
  "type": "object",
  "properties": {
    "currency": {
      "description": "The type of currency. Must be EUR (or EUR equivalent)",
      "type": "string"
    },
    "value": {
      "description": "Total value of amount. Must be >= 0",
      "format": "int64",
      "type": "integer"
    }
  }
}