Adyen · Schema

StoredValueRequest

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

PaymentsFinancial ServicesFintech

Properties

Name Type Description
SaleData object
CustomerLanguage string If the language is selected by the Sale System before the request to the POI.
StoredValueData array
View JSON Schema on GitHub

JSON Schema

adyen-storedvaluerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoredValueRequest",
  "title": "StoredValueRequest",
  "type": "object",
  "description": "It conveys Information related to the Stored Value transaction to process. Content of the Stored Value Request message.",
  "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"
  ]
}