Adyen · JSON Structure

Terminal Allowed Product Structure

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

Type: object Properties: 4 Required: 1
PaymentsFinancial ServicesFintech

AllowedProduct is a JSON Structure definition published by Adyen, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ProductCode EanUpc ProductLabel AdditionalProductInfo

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-allowed-product-structure.json",
  "description": "Product that is payable by the payment card. Product codes that are payable by the payment card.",
  "type": "object",
  "properties": {
    "ProductCode": {
      "type": "int32",
      "minimum": 1,
      "maximum": 20,
      "description": "Product code of item purchased with the transaction."
    },
    "EanUpc": {
      "type": "int32",
      "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"
  ],
  "name": "AllowedProduct"
}