Adyen · Schema

ConvertedAmount

PaymentsFinancial ServicesFintech

Properties

Name Type Description
AmountValue number
Currency string
View JSON Schema on GitHub

JSON Schema

adyen-convertedamount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConvertedAmount",
  "title": "ConvertedAmount",
  "type": "object",
  "properties": {
    "AmountValue": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$"
    }
  },
  "required": [
    "AmountValue",
    "Currency"
  ]
}