-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathds007-payment-wallet-attestation.json
217 lines (217 loc) · 5.66 KB
/
ds007-payment-wallet-attestation.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Payment Wallet Attestation",
"description": "Schema for Payment Wallet Attestation (PWA) credentials.",
"type": "object",
"properties": {
"iss": {
"description": "Issuer of the credential.",
"type": "string"
},
"aud": {
"description": "Intended audience of the credential.",
"type": "string"
},
"sub": {
"description": "Unique identifier assigned and retained by the PSP for the holder.",
"type": "string"
},
"iat": {
"description": "Time of issuance.",
"type": "number"
},
"nbf": {
"description": "Not to be used before this time.",
"type": "number"
},
"exp": {
"description": "Expiry time of the credential.",
"type": "number"
},
"vct": {
"description": "Currently, the supported value is PaymentWalletAttestation.",
"type": "string",
"enum": ["PaymentWalletAttestation"]
},
"jti": {
"description": "Unique identifier assigned and retained by the PSP for this credential.",
"type": "string"
},
"fundingSource": {
"description": "Details about the funding source for which the PWA is valid.",
"type": "object",
"properties": {
"type": {
"description": "Type of funding source, supported values are account, card, and any.",
"type": "string",
"enum": ["account", "card", "any"]
},
"panLastFour": {
"description": "Last four digits of the Primary Account Number (PAN).",
"type": "string",
"pattern": "^[0-9]{4}$"
},
"iin": {
"description": "Issuer Identification Number (IIN), also called Bank Identification Number (BIN).",
"type": "string",
"pattern": "^[0-9]{6,8}$"
},
"parLastFour": {
"description": "Last four characters of the EMV Payment Account Reference (PAR).",
"type": "string",
"maxLength": 4
},
"ibanLastFour": {
"description": "Last four characters of the account's IBAN.",
"type": "string",
"pattern": "^[A-Z0-9]{4}$"
},
"bic": {
"description": "Bank Identifier Code (BIC) as per ISO 9362.",
"type": "string"
},
"sortCode": {
"description": "National bank sort or routing code.",
"type": "string"
},
"aliasId": {
"description": "Unique identifier assigned and retained by the PSP for the funding source.",
"type": "string"
},
"currency": {
"description": "Currency for the funding source in 3-letter alphabetic code.",
"type": "string",
"pattern": "^[A-Z]{3}$"
},
"scheme": {
"description": "Scheme of the funding source.",
"type": "string",
"enum": [
"Visa",
"American Express",
"Discover",
"JCB",
"Mastercard",
"UnionPay",
"SEPA",
"SEPA SCT",
"SEPA SCT Inst"
]
},
"icon": {
"description": "URI to logo or card art.",
"type": "string",
"format": "uri"
}
}
},
"cnf": {
"description": "Object containing information for cryptographic holder binding.",
"type": "object",
"properties": {
"jwk": {
"description": "JSON Web Key as per specification.",
"type": "object",
"properties": {
"kty": {
"description": "Key type.",
"type": "string"
},
"crv": {
"description": "Curve of the key.",
"type": "string"
},
"x": {
"description": "The x-coordinate for the elliptic curve point.",
"type": "string"
},
"y": {
"description": "The y-coordinate for the elliptic curve point.",
"type": "string"
}
},
"required": ["kty", "crv", "x", "y"]
}
},
"required": ["jwk"]
}
},
"required": ["iss", "sub", "iat", "vct", "fundingSource", "cnf"],
"allOf": [
{
"if": {
"properties": {
"fundingSource": {
"properties": {
"type": {
"const": "card"
}
}
}
}
},
"then": {
"properties": {
"fundingSource": {
"required": ["panLastFour", "iin"]
}
}
}
},
{
"if": {
"properties": {
"fundingSource": {
"properties": {
"type": {
"const": "account"
}
}
}
}
},
"then": {
"properties": {
"fundingSource": {
"required": ["ibanLastFour", "bic"]
}
}
}
},
{
"if": {
"properties": {
"fundingSource": {
"properties": {
"type": {
"const": "any"
}
}
}
}
},
"then": {
"properties": {
"fundingSource": {
"not": {
"anyOf": [
{
"required": ["aliasId"]
},
{
"required": ["currency"]
},
{
"required": ["scheme"]
},
{
"required": ["icon"]
}
]
}
}
}
}
}
]
}