Adyen · Schema

AllowedProduct

Product that is payable by the payment card. Product codes that are payable by the payment card.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
ProductCode integer Product code of item purchased with the transaction.
EanUpc integer Standard product code of item purchased with the transaction.
ProductLabel string Product name of an item purchased with the transaction.
AdditionalProductInfo string Additionl information related to the line item.
View JSON Schema on GitHub

JSON Schema

adyen-allowedproduct-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AllowedProduct",
  "title": "AllowedProduct",
  "type": "object",
  "description": "Product that is payable by the payment card. Product codes that are payable by the payment card.",
  "properties": {
    "ProductCode": {
      "type": "integer",
      "minimum": 1,
      "maximum": 20,
      "description": "Product code of item purchased with the transaction."
    },
    "EanUpc": {
      "type": "integer",
      "description": "Standard product code of item purchased with the transaction."
    },
    "ProductLabel": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Product name of an item purchased with the transaction."
    },
    "AdditionalProductInfo": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Additionl information related to the line item."
    }
  },
  "required": [
    "ProductCode"
  ]
}