Adyen · JSON Structure

Terminal Sensitive Card Data Structure

This data structure could be CMS protected (EnvelopedData). In this case the data structure SensitiveCardData is replaced by the data structure ProtectedCardData of type ContentInformationType. When this data is protected, the exact content is unknown by the Sale System, and might include all the information which are required by an external backup POI Server to make a batch payment transaction in case of problem with the POI System. Sensitive information related to the payment card, entered or read by the Sale System.

Type: object Properties: 4
PaymentsFinancial ServicesFintech

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

Properties

PAN CardSeqNumb ExpiryDate TrackData

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-sensitive-card-data-structure.json",
  "description": "This data structure could be CMS protected (EnvelopedData). In this case the data structure SensitiveCardData is replaced by the data structure ProtectedCardData of type ContentInformationType. When this data is protected, the exact content is unknown by the Sale System, and might include all the information which are required by an external backup POI Server to make a batch payment transaction in case of problem with the POI System. Sensitive information related to the payment card, entered or read by the Sale System.",
  "type": "object",
  "properties": {
    "PAN": {
      "type": "int32",
      "minimum": 8,
      "maximum": 28
    },
    "CardSeqNumb": {
      "type": "int32",
      "minimum": 2,
      "maximum": 3,
      "description": "if EntryMode is File, Keyed or Manual."
    },
    "ExpiryDate": {
      "type": "int32",
      "minimum": 4,
      "maximum": 4,
      "description": "if EntryMode is File."
    },
    "TrackData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TrackData"
      }
    }
  },
  "name": "SensitiveCardData"
}