Adyen · JSON Structure

Terminal Stored Value Request Structure

It conveys Information related to the Stored Value transaction to process. Content of the Stored Value Request message.

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

StoredValueRequest is a JSON Structure definition published by Adyen, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SaleData CustomerLanguage StoredValueData

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-stored-value-request-structure.json",
  "description": "It conveys Information related to the Stored Value transaction to process. Content of the Stored Value Request message.",
  "type": "object",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "CustomerLanguage": {
      "type": "string",
      "pattern": "^[a-z]{2,2}$",
      "description": "If the language is selected by the Sale System before the request to the POI."
    },
    "StoredValueData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StoredValueData"
      }
    }
  },
  "required": [
    "SaleData",
    "StoredValueData"
  ],
  "name": "StoredValueRequest"
}