Adyen · Schema

TerminalProductPrice

PaymentsFinancial ServicesFintech

Properties

Name Type Description
currency string The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).
value number The price of the item.
View JSON Schema on GitHub

JSON Schema

adyen-terminalproductprice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TerminalProductPrice",
  "title": "TerminalProductPrice",
  "properties": {
    "currency": {
      "description": "The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).",
      "type": "string"
    },
    "value": {
      "description": "The price of the item.",
      "format": "double",
      "type": "number"
    }
  },
  "type": "object"
}