Adyen · JSON Structure

Terminal Stored Value Account Id Structure

It contains the identifications of the stored value account or the stored value card, and the associated product sold by the Sale System for stored value requests. Identification of the stored value account or the stored value card.

Type: object Properties: 7 Required: 4
PaymentsFinancial ServicesFintech

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

Properties

StoredValueAccountType StoredValueProvider OwnerName ExpiryDate EntryMode IdentificationType StoredValueID

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-account-id-structure.json",
  "description": "It contains the identifications of the stored value account or the stored value card, and the associated product sold by the Sale System for stored value requests. Identification of the stored value account or the stored value card.",
  "type": "object",
  "properties": {
    "StoredValueAccountType": {
      "$ref": "#/components/schemas/StoredValueAccountType"
    },
    "StoredValueProvider": {
      "type": "string",
      "pattern": "^.+$"
    },
    "OwnerName": {
      "type": "string",
      "pattern": "^.+$"
    },
    "ExpiryDate": {
      "type": "int32",
      "minimum": 4,
      "maximum": 4
    },
    "EntryMode": {
      "$ref": "#/components/schemas/EntryMode"
    },
    "IdentificationType": {
      "$ref": "#/components/schemas/IdentificationType"
    },
    "StoredValueID": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "StoredValueAccountType",
    "EntryMode",
    "IdentificationType",
    "StoredValueID"
  ],
  "name": "StoredValueAccountID"
}