{ "$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" }