Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit c893db3

Browse files
dslmeinteryanbnl
authored andcommitted
Various after reviewing:
* Replaced ASCII art with SVG (and its draw.io source, and backup PNG). * OCD w.r.t. whitespace, including putting each sentence on 1 line. * Various textual things.
1 parent 24426e1 commit c893db3

5 files changed

+73
-61
lines changed

img/eHN-organisation.drawio

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<mxfile host="Electron" modified="2021-11-17T14:10:13.047Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/15.7.3 Chrome/91.0.4472.164 Electron/13.6.1 Safari/537.36" etag="PQatIwhfOXBGAUGqUjom" version="15.7.3" type="device"><diagram id="ONhLoUhmbz2CxGIN2Z1D" name="Page-1">7Vbfb5swEP5rkLaHTWACTR7bNOumqdskKq15qhx8A2sGZ45TyP76mXCOcWjVtdKUSdsTvu9++O674yCI51V7pei6vJYMREBC1gbxZUBIFIWpeXTIrkemSdgDheIMjRyQ8Z+AoDXbcgYbz1BLKTRf+2Au6xpy7WFUKdn4Zt+k8G9d0wJGQJZTMUa/cqZLrIKcOfw98KK0N0fprNdU1BpjJZuSMtkMoHgRxHMlpe5PVTsH0ZFneen93j2iPSSmoNa/43D7o5iS1TL7fJct727O5h/47OMbjHJPxRYLNuVQYVIn4SfQjVTfMXu9s5Qoua0ZdFGjIL5oSq4hW9O80zZmCAxW6kqgepylvRKUhnYAYdZXICvQamdMUBunyCCO0CREuXENiSzL5aAZ1o/iDBSH0I4mc0CmnsEaGbF2DdUKlMEyTbWZV5IKk8TFykBp0Z1eLRbnr09OJZn6VCbk1FTGIypvMn5yniaTv42nZMTTiCSo2Xm38YxUyxp8UhyDoZGg5fq2O79NUFoONJftUNhZoTZ1DJw6cYnR94Jz20vW79F2bORW5fD0a6apKkA/vcSAeat83NxB85IHemcxBYJqfu9/AB5qKN7wRXJTmVtXs6N1lRzNRF83eg0X9lGg4yE87D0bqCdmFGg/X4eyXz5y6T84cvH/kfszI2dE96vTm7sfxnjxCw==</diagram></mxfile>

img/eHN-organisation.png

24.2 KB
Loading

img/eHN-organisation.svg

+2
Loading

issuing/readme.md

+45-27
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# DCC Issuance Guide
22

3-
The EU DCC encodes a sequence of test and vaccination events into a single record. Depending on the sequence a DCC can be issued for:
3+
The EU DCC encodes a certificate that's issued for:
4+
5+
* Vaccination - or more precisely: a status summarizing a combination of multiple vaccinations, and possibly a recovery
6+
* Recovery - after positive test, and confirmation by a health authority
7+
* Test result - after negative test at an officially-registered testing facility
48

5-
* Vaccination
6-
* Recovery (after positive test)
7-
* Test (after negative test)
89

910
## General structure
1011

11-
The DCC is encoded as a JSON. It includes a section linking the identity of the holder to the DCC, and a section which includes a medical statement made about the holder - for example their vaccination status.
12+
The DCC is encoded as JSON.
13+
This includes a section linking the identity of the holder to the DCC, and a section which includes a medical statement made about the holder - for example their vaccination status.
1214

13-
This is schema 1.3.0:
15+
An example of a DCC is:
1416

1517
{
1618
"ver": "1.3.0",
@@ -41,7 +43,8 @@ The version number is stored in `ver` and it represents the version of the schem
4143

4244
"ver": "1.3.0"
4345

44-
The holder's name is stored in the element `nam`, `fn` contains the family name and `gn` contains the given name of the holder encoded in any UTF-8 alphabet character. The fields `fnt` and `gnt` contain the family name and given name respectively transliterated according to the [ICAO 9303 MRTD transliteration rules](https://www.icao.int/publications/Documents/9303_p3_cons_en.pdf).
46+
The holder's name is stored in the element `nam`, `fn` contains the family name and `gn` contains the given name of the holder encoded in any UTF-8 alphabet character.
47+
The fields `fnt` and `gnt` contain the family name and given name respectively transliterated according to the [ICAO 9303 MRTD transliteration rules](https://www.icao.int/publications/Documents/9303_p3_cons_en.pdf).
4548

4649
"nam": {
4750
"fn": "Smith-Jones",
@@ -50,13 +53,17 @@ The holder's name is stored in the element `nam`, `fn` contains the family name
5053
"gnt": "CHARLES<EDWARD"
5154
}
5255

53-
The holder's date of birth is included in the `dob` element. It is date formatted according to ISO-8601 UTC and may contain either: `YYYY`, `YYYY-MM` or `YYYY-MM-DD`. This date must match the date the holder's identity document.
56+
The holder's date of birth is included in the `dob` element.
57+
It is date-formatted according to ISO-8601 UTC and may contain either: `YYYY`, `YYYY-MM` or `YYYY-MM-DD`.
58+
This date must match the date the holder's identity document.
5459

5560
"dob": "1964-01-01"
5661

57-
In case the identity document contains `YYYY-XX-XX`, `YYYY-00-00` or other such partial dates, then only the known portion of the date should be encoded,
62+
In case the identity document contains `YYYY-XX-XX`, `YYYY-00-00` or other such partial dates, then only the known portion of the date should be encoded.
5863

59-
The medical data is stored in an array containing a single element. The name of the array differs depending on the type of medical data. For vaccinations the array is `v`, for test it is `t` and for recovery it is `r`.
64+
The medical data is stored in an array containing a single element.
65+
The name of the array differs depending on the type of medical data.
66+
For vaccinations, the array is `v`, for test it is `t`, and for recovery it is `r`.
6067

6168
There are a number elements that are shared by all of the medical data types:
6269

@@ -69,6 +76,7 @@ There are a number elements that are shared by all of the medical data types:
6976

7077
The full certificate identifier specification can be found [here](https://ec.europa.eu/health/sites/default/files/ehealth/docs/vaccination-proof_interoperability-guidelines_en.pdf) and the official technical specifications for the EU-DCC schema is published [here](https://ec.europa.eu/health/sites/default/files/ehealth/docs/covid-certificate_json_specification_en.pdf).
7178

79+
7280
## Test (PCR)
7381

7482
The test data is stored under the `t` element.
@@ -91,17 +99,18 @@ The fields which are unique to PCR tests are:
9199

92100
| Field | Name | Description |
93101
| ----- | ------------ | --------------------------------------------------- |
94-
| `tt` | Test type | Value from the PCR TT valuset found on the gateway |
102+
| `tt` | Test type | Value from the PCR TT valueset found on the Gateway |
95103
| `nm` | Test name | Optional, when included must not be empty or `` |
96104
| `sc` | Sample date | ISO-8601 date/time formats (see below) |
97-
| `tr` | Test result | Value from the PCR TT valuset found on the gateway |
105+
| `tr` | Test result | Value from the PCR TT valueset found on the Gateway |
98106
| `tc` | Test center | Actor who did the test, max 80 UTF-8 characters |
99107

100-
The follow are valid date/time formats:
108+
The following are valid date/time formats:
101109
- `YYYY-MM-DDThh:mm:ssZ`
102110
- `YYYY-MM-DDThh:mm:ss[+-]hh`
103111
- `YYYY-MM-DDThh:mm:ss[+-]hhmm`
104112
- `YYYY-MM-DDThh:mm:ss[+-]hh:mm`
113+
<!-- (This is a subset of all valid formats.) -->
105114

106115
## Test (Rapid Antigen/RAT)
107116

@@ -125,17 +134,20 @@ The fields which are unique to RAT tests are:
125134

126135
| Field | Name | Description |
127136
| ----- | -------------- | ------------------------------------------------------- |
128-
| `tt` | Test type | Value from the RAT TT valuset found on the gateway |
137+
| `tt` | Test type | Value from the RAT TT valueset found on the Gateway |
129138
| `ma` | Test device ID | RAT device id from the JRC DB, HSC common list valueset |
130139
| `sc` | Sample date | ISO-8601 date/time formats (see below) |
131-
| `tr` | Test result | Value from the PCR TT valuset found on the gateway |
140+
| `tr` | Test result | Value from the PCR TT valueset found on the Gateway |
132141
| `tc` | Test center | Actor who did the test, max 80 UTF-8 characters |
133142

134143
Extra information over the test device id:
135144

136-
In EU/EEA countries, issuers MUST only issue certificates for tests belonging to the currently valid value set. The value set MUST be updated every 24 hours.
145+
In EU/EEA countries, issuers MUST only issue certificates for tests belonging to the currently valid value set.
146+
The value set MUST be updated every 24 hours.
147+
148+
Values outside of the value set MAY be used in certificates issued by third countries, however the identifiers MUST still be from the JRC database.
149+
The use of other identifiers such as those provided directly by test manufacturers is not permitted.
137150

138-
Values outside of the value set MAY be used in certificates issued by third countries, however the identifiers MUST still be from the JRC database. The use of other identifiers such as those provided directly by test manufacturers is not permitted.
139151

140152
## Recovery
141153

@@ -161,10 +173,12 @@ The fields which are unique to recovery are:
161173
| `df` | Date Valid From | ISO-8601, `YYYY-MM-DD`, > 11 days afer `fr` |
162174
| `du` | Date Valid To | ISO-8601, `YYYY-MM-DD`, <= 180 days afer `fr` |
163175

164-
The recovery certificate can be issued for a person who has recovered from COVID-19, as proven by a positief NAAT/PCR test. To quote the legislation:
176+
The recovery certificate can be issued for a person who has recovered from COVID-19, as proven by a positief NAAT/PCR test.
177+
To quote the legislation:
165178

166179
"A certificate confirming that, following a positive result of a NAAT test carried out by health professionals or by skilled testing personnel the holder has recovered from a SARS-CoV-2 infection (certificate of recovery)."
167180

181+
168182
## Vaccination
169183

170184
The vaccination data is stored under the `v` element.
@@ -188,14 +202,15 @@ The fields which are unique to a vaccination are:
188202

189203
| Field | Name | Description |
190204
| ----- | ----------------------- | --------------------------------------------------- |
191-
| `vp` | Vaccination/prophylaxis | Value from the v/p valuset found on the gateway |
192-
| `mp` | Medical product | Value from the v/p valuset found on the gateway |
193-
| `ma` | Manufactorer/MAH | Value from the v/p valuset found on the gateway |
205+
| `vp` | Vaccination/prophylaxis | Value from the v/p valueset found on the Gateway |
206+
| `mp` | Medical product | Value from the v/p valueset found on the Gateway |
207+
| `ma` | Manufactorer/MAH | Value from the v/p valueset found on the Gateway |
194208
| `dn` | Dose number | Number of doses holder has received |
195-
| `sd` | Total series | Number of doses in the full series, always >= `dn` |
209+
| `sd` | Total series | Number of doses in the full series, always >= `dn` |
196210
| `dt` | Date of event | ISO-8601 UTC, `YYYY-MM-DD` |
197211

198-
For vaccinations the record contains the details of the last vaccination event along with a sequence counter. The sequence counter identifies the vaccination count over the number of doses required for the vaccination.
212+
For vaccinations the record contains the details of the last vaccination event along with a sequence counter.
213+
The sequence counter identifies the vaccination count over the number of doses required for the vaccination.
199214

200215
For example, the sequence of Pfizer 1/2 will be encoded like this:
201216

@@ -229,7 +244,7 @@ And the sequence Pfizer 2/2 is encoded like this:
229244

230245
In the cases that a person has received more than the standard sequence of doses, then the actual number of doses given will be provided, and `dn` will be equal to `sd`.
231246

232-
## Vaccine Boosters
247+
### Vaccine Boosters
233248

234249
Booster vaccinations MUST be encoded as an additional dose in the sequence. For Pfizer this results in a sequence of 3/3, which is encoded like this:
235250

@@ -248,13 +263,16 @@ Booster vaccinations MUST be encoded as an additional dose in the sequence. For
248263

249264
### Wait times
250265

251-
There is an issue regards wait time after last dose. Many countries consider a person "fully vaccinated" only 14 days after their last vaccination. For people who have received a booster dose, this will mean that there is a wait time before their booster DCC is accepted.
266+
There is an issue regards wait time after last dose.
267+
Many countries consider a person "fully vaccinated" only 14 days after their last vaccination.
268+
For people who have received a booster dose, this will mean that there is a wait time before their booster DCC is accepted.
252269

253-
There are ? ways to handle this situation:
270+
There are several ways to handle this situation:
254271

255272
* Issue multiple DCC, then the original complete vaccination can be used during the wait time.
256273
* Educate citizens so that they know about the wait time.
257-
* ?? SUGGESTIONS
274+
<!-- SUGGESTIONS? -->
275+
258276

259277
## Further reading
260278

0 commit comments

Comments
 (0)