Adyen · Schema

TerminalProductPrice

TerminalProductPrice schema from Adyen API

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

management-terminal-product-price-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/management-terminal-product-price-schema.json",
  "title": "TerminalProductPrice",
  "description": "TerminalProductPrice schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}