{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-stored-value-response-schema.json", "title": "StoredValueResponse", "description": "It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message.", "type": "object", "properties": { "Response": { "$ref": "#/components/schemas/Response" }, "SaleData": { "$ref": "#/components/schemas/SaleData" }, "POIData": { "$ref": "#/components/schemas/POIData" }, "StoredValueResult": { "type": "array", "items": { "$ref": "#/components/schemas/StoredValueResult" } }, "PaymentReceipt": { "type": "array", "items": { "$ref": "#/components/schemas/PaymentReceipt" } } }, "required": [ "Response", "SaleData", "POIData" ] }