{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoredValueResponse", "title": "StoredValueResponse", "type": "object", "description": "It conveys Information related to the Stored Value transaction processed by the POI System. Content of the Stored Value Response message.", "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" ] }