Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space ENWORK and version Documentation
Info

Please note that the data within all JSON objects is encoded using UTF-8 and then must be also Base64 encoded. This applies in particular to special characters such as "Umlaute" and diactrics.

Data Elements

Table Filter
defaultBeschreibung
isFirstTimeEnterfalse
hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1638288570508_-802315026
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0
Multiexcerpt
MultiExcerptNamedata_elements
Table Transformer
dateFormatdd M yy
export-wordfalse
show-sourcefalse
export-csvfalse
id1638288570510_-416416241
transposefalse
worklog365|5|8|y w d h m|y w d h m
separator.
export-pdffalse
sqlSELECT * FROM T*

KeyFormatCNDDescriptionBeschreibung
1

securityCode

string

O

Card security value

Kartenprüfnummer
2

expiryDate

string

M

Card expiry in format YYYYMM

Kartenverfallsdarum im Format JJJJMM
3

startDate

string

C

Card start in format YYYYMM (only applicable to some UK debit cards)

Kartenanfangsdatum im Format JJJJMM (nur für einige Debitkarten in GB zutreffend)
4

cardholderName

string

M

Name of the cardholder as printed on the card.

Notice: Alphanumeric special characters, listed in EMV Book 4, “Appendix B”. Special characters have been added with EMV 3DS Version 2.3, but not all participants (banks) already support that standard.

Name des Karteninhabers, wie auf der Karte angegeben.

Hinweis: Alphanumerische Sonderzeichen gemäß EMV Book 4, „Anhang B“. Sonderzeichen wurden mit EMV 3DS Version 2.3 hinzugefügt, aber nicht alle Teilnehmer (Banken) unterstützen diesen Standard bereits.

5

issueNumber

string

C

Issue number of the card (only applicable to some UK debit cards)

Ausgabenummer der Karte (nur für einige Debitkarten in GB zutreffend)
6

number

string

M

Card number or card token

Kartennummer oder Karten-Token
7

brand

string

M

Card network

Kartennetzwerk

Schema

(info) BASEURL=

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNameBaseURL
PageWithExcerptWording
schemas

Multiexcerpt
MultiExcerptNameschema
Code Block
languagejson
linenumberstrue
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/card.json",
    "title": "card",
    "description": "Card Information",
    "type": "object",
    "properties": {
        "securityCode": {
            "type": "string",
            "minLength": 3,
            "maxLength": 4
        },
        "expiryDate": {
            "type": "string",
            "description": "YYYYMM",
            "minLength": 6,
            "maxLength": 6
        },
        "startDate": {
            "type": "string",
            "description": "YYYYMM (only applicable to some UK debit cards)",
            "minLength": 6,
            "maxLength": 6
        },
        "cardholderName": {
            "type": "string",
            "maxLength" : 45,
            "minLength" : 2,
            "description" : "The name of the cardholder as printed on the card. Alphanumeric special characters, listed in EMV Book 4, “Appendix B”."
        },
        "issueNumber" : {
            "type" : "string",
            "maxLength" : 2,
            "minLength" : 1,
            "description" : "only applicable to some UK debit cards"
        },
        "number": {
            "type" : "string",
            "maxLength" : 19,
            "minLength" : 12
        },
        "brand": {
            "type": "string",
            "enum": [
                "MasterCard",
                "VISA",
                "AMEX",
                "DINERSDiners",
                "CBN",
                "JCB",
                "Dankort",
                "Maestro",
                "Cartes Bancaires",
                "Discover",
                "Bancontact",
                "Hipercard",
                "Elo",
                "Aura",
                "Carte 4Etoiles",
                "AirPlus",
                "CUP",
                "NARANJA",
                "SHOPPING",
                "CABAL",
                "ARGENCARD",
                "CENCOSUD",
                "KOOKMIN",
                "KEB",
                "BC",
                "SHINHAN",
                "SAMSUNG",
                "HYUNDAI",
                "LOTTE",
                "1euro",
                "echequevacances",
                "cofidis3xcb",
                "cofidis4xcb",
                "facilypay-3x",
                "facilypay-3xsansfrais",
                "facilypay-4x",
                "facilypay-4xsansfrais",
                "RuPay"
            ]
        }
    },
    "required": ["expiryDate", "number", "brand"],
    "additionalProperties": false
}

Sample

Multiexcerpt
MultiExcerptNamesample
Code Block
languagejson
linenumberstrue
{ 
    "securityCode": "569",
    "expiryDate": "202208",
    "cardholderName": "William Thomas",
    "number": "4186665161011901",
    "brand": "VISA"
}

Table of Contents