{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoredValueResult", "title": "StoredValueResult", "type": "object", "description": "For each stored value card loaded or reloaded, in the StoredValue response message. Result of loading/reloading a stored value card..", "properties": { "StoredValueTransactionType": { "$ref": "#/components/schemas/StoredValueTransactionType" }, "ProductCode": { "type": "integer", "minimum": 1, "maximum": 20, "description": "Copy." }, "EanUpc": { "type": "integer", "description": "Copy." }, "ItemAmount": { "type": "number", "maximum": 99999999.999999, "minimum": 0, "description": "Total amount of the item line." }, "Currency": { "type": "string", "pattern": "^[A-Z]{3,3}$", "description": "Copy." }, "StoredValueAccountStatus": { "$ref": "#/components/schemas/StoredValueAccountStatus" }, "HostTransactionID": { "$ref": "#/components/schemas/TransactionIDType" } }, "required": [ "StoredValueTransactionType" ] }