This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
DCC.combined-schema.json
374 lines (374 loc) · 10.5 KB
/
DCC.combined-schema.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://id.uvci.eu/DCC.combined-schema.json",
"title": "EU DCC",
"description": "EU Digital Covid Certificate",
"$comment": "Schema version 1.3.3",
"type": "object",
"oneOf": [
{
"required": [
"ver",
"nam",
"dob",
"v"
]
},
{
"required": [
"ver",
"nam",
"dob",
"t"
]
},
{
"required": [
"ver",
"nam",
"dob",
"r"
]
}
],
"properties": {
"ver": {
"title": "Schema version",
"description": "Version of the schema, according to Semantic versioning (ISO, https://semver.org/ version 2.0.0 or newer)",
"type": "string",
"pattern": "^\\d+.\\d+.\\d+$",
"examples": [
"1.0.0",
"1.3.0",
"1.3.1",
"1.3.2",
"1.3.3"
]
},
"nam": {
"description": "Surname(s), forename(s) - in that order",
"$ref": "#/$defs/person_name"
},
"dob": {
"title": "Date of birth",
"description": "Date of Birth of the person addressed in the DCC. ISO 8601 date format restricted to range 1900-2099 or empty",
"type": "string",
"pattern": "^((19|20)\\d\\d(-\\d\\d){0,2}){0,1}$",
"examples": [
"1979-04-14",
"1950",
"1901-08",
""
]
},
"v": {
"description": "Vaccination Group",
"type": "array",
"items": {
"$ref": "#/$defs/vaccination_entry"
},
"minItems": 1,
"maxItems": 1
},
"t": {
"description": "Test Group",
"type": "array",
"items": {
"$ref": "#/$defs/test_entry"
},
"minItems": 1,
"maxItems": 1
},
"r": {
"description": "Recovery Group",
"type": "array",
"items": {
"$ref": "#/$defs/recovery_entry"
},
"minItems": 1,
"maxItems": 1
}
},
"$defs": {
"dose_posint": {
"description": "Dose Number / Total doses in Series: positive integer",
"type": "integer",
"minimum": 1
},
"issuer": {
"description": "Certificate Issuer",
"type": "string",
"maxLength": 80
},
"person_name": {
"description": "Person name: The person's name consisting at least of a separate standardised surname, or a standardised forename, or both - with standardisation done according to the rules defined in ICAO Doc 9303 Part 3",
"anyOf": [
{
"required": [
"fnt"
]
},
{
"required": [
"gnt"
]
}
],
"type": "object",
"properties": {
"fn": {
"title": "Surname",
"description": "The surname or primary name(s) of the person addressed in the certificate",
"type": "string",
"maxLength": 80,
"examples": [
"d'Červenková Panklová"
]
},
"fnt": {
"title": "Standardised surname",
"description": "The surname(s) of the person, transliterated ICAO 9303",
"type": "string",
"pattern": "^[A-Z<]*$",
"maxLength": 80,
"examples": [
"DCERVENKOVA<PANKLOVA"
]
},
"gn": {
"title": "Forename",
"description": "The forename(s) of the person addressed in the certificate",
"type": "string",
"maxLength": 80,
"examples": [
"Jiřina-Maria Alena"
]
},
"gnt": {
"title": "Standardised forename",
"description": "The forename(s) of the person, transliterated ICAO 9303",
"type": "string",
"pattern": "^[A-Z<]*$",
"maxLength": 80,
"examples": [
"JIRINA<MARIA<ALENA"
]
}
}
},
"certificate_id": {
"description": "Certificate Identifier, format as per UVCI: Annex 2 in https://ec.europa.eu/health/sites/health/files/ehealth/docs/vaccination-proof_interoperability-guidelines_en.pdf",
"type": "string",
"maxLength": 80
},
"vaccination_entry": {
"description": "Vaccination Entry",
"required": [
"tg",
"vp",
"mp",
"ma",
"dn",
"sd",
"dt",
"co",
"is",
"ci"
],
"type": "object",
"properties": {
"tg": {
"description": "disease or agent targeted",
"$ref": "#/$defs/disease-agent-targeted"
},
"vp": {
"description": "vaccine or prophylaxis",
"$ref": "#/$defs/vaccine-prophylaxis"
},
"mp": {
"description": "vaccine medicinal product",
"$ref": "#/$defs/vaccine-medicinal-product"
},
"ma": {
"description": "Marketing Authorization Holder - if no MAH present, then manufacturer",
"$ref": "#/$defs/vaccine-mah-manf"
},
"dn": {
"description": "Dose Number",
"$ref": "#/$defs/dose_posint"
},
"sd": {
"description": "Total Series of Doses",
"$ref": "#/$defs/dose_posint"
},
"dt": {
"description": "ISO8601 complete date: Date of Vaccination",
"type": "string",
"format": "date"
},
"co": {
"description": "Country of Vaccination",
"$ref": "#/$defs/country_vt"
},
"is": {
"description": "Certificate Issuer",
"$ref": "#/$defs/issuer"
},
"ci": {
"description": "Unique Certificate Identifier: UVCI",
"$ref": "#/$defs/certificate_id"
}
}
},
"test_entry": {
"description": "Test Entry",
"required": [
"tg",
"tt",
"sc",
"tr",
"co",
"is",
"ci"
],
"type": "object",
"properties": {
"tg": {
"description": "disease or agent targeted",
"$ref": "#/$defs/disease-agent-targeted"
},
"tt": {
"description": "Type of Test",
"$ref": "#/$defs/test-type"
},
"nm": {
"description": "NAA Test Name",
"type": "string",
"maxLength": 80
},
"ma": {
"description": "RAT Test name and manufacturer",
"$ref": "#/$defs/test-manf"
},
"sc": {
"description": "Date/Time of Sample Collection",
"type": "string",
"format": "date-time"
},
"tr": {
"description": "Test Result",
"$ref": "#/$defs/test-result"
},
"tc": {
"description": "Testing Centre",
"type": "string",
"maxLength": 80
},
"co": {
"description": "Country of Test",
"$ref": "#/$defs/country_vt"
},
"is": {
"description": "Certificate Issuer",
"$ref": "#/$defs/issuer"
},
"ci": {
"description": "Unique Certificate Identifier, UVCI",
"$ref": "#/$defs/certificate_id"
}
}
},
"recovery_entry": {
"description": "Recovery Entry",
"required": [
"tg",
"fr",
"co",
"is",
"df",
"du",
"ci"
],
"type": "object",
"properties": {
"tg": {
"description": "disease or agent targeted",
"$ref": "#/$defs/disease-agent-targeted"
},
"fr": {
"description": "ISO 8601 complete date of first positive NAA test result",
"type": "string",
"format": "date"
},
"co": {
"description": "Country of Test",
"$ref": "#/$defs/country_vt"
},
"is": {
"description": "Certificate Issuer",
"$ref": "#/$defs/issuer"
},
"df": {
"description": "ISO 8601 complete date: Certificate Valid From",
"type": "string",
"format": "date"
},
"du": {
"description": "ISO 8601 complete date: Certificate Valid Until",
"type": "string",
"format": "date"
},
"ci": {
"description": "Unique Certificate Identifier, UVCI",
"$ref": "#/$defs/certificate_id"
}
}
},
"disease-agent-targeted": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.1",
"type": "string",
"valueset-uri": "valuesets/disease-agent-targeted.json"
},
"vaccine-prophylaxis": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.2",
"type": "string",
"valueset-uri": "valuesets/vaccine-prophylaxis.json"
},
"vaccine-medicinal-product": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.3",
"type": "string",
"valueset-uri": "valuesets/vaccine-medicinal-product.json"
},
"vaccine-mah-manf": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.4",
"type": "string",
"valueset-uri": "valuesets/vaccine-mah-manf.json"
},
"country_vt": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.6 - Country of Vaccination / Test, ISO 3166 alpha-2 where possible",
"type": "string",
"pattern": "[A-Z]{1,10}",
"valueset-uri": "valuesets/country-2-codes.json"
},
"test-manf": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.8",
"type": "string",
"valueset-uri": "valuesets/test-manf.json"
},
"test-result": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.9",
"type": "string",
"valueset-uri": "valuesets/test-result.json"
},
"test-type": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Section 2.7",
"type": "string",
"valueset-uri": "valuesets/test-type.json"
},
"vaccine-encoding-instructions": {
"description": "EU eHealthNetwork: Value Sets for Digital Covid Certificates. Version 1.14, 2023-01-25, Annex A",
"type": "string",
"valueset-uri": "valuesets/vaccine-encoding-instructions.json"
}
}
}