Verifone · Schema

VariableResponseType

Variable/Value Pairs.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
variableName string Variable name (this would be provided by Verifone)
variableValue string Value of the variable
View JSON Schema on GitHub

JSON Schema

order-service-api-variableresponsetype.json Raw ↑
{
  "$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"
    }
  }
}