Variable/Value Pairs.
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-variableresponsetype.json", "title": "VariableResponseType", "description": "Variable/Value Pairs.", "type": "object", "properties": { "variableName": { "type": "string", "description": "Variable name (this would be provided by Verifone)", "pattern": "^[A-Za-z0-9_-]*$" }, "variableValue": { "type": "string", "maxLength": 10000, "description": "Value of the variable" } } }