Skip to content

Commit

Permalink
schemas(subject): add vaccination fields (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg authored Oct 26, 2023
1 parent 20ffa65 commit e5a6ff5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,12 @@ outcome records death)/death reported at followup.
**icu_admitted**: Bool. Has the subject been admitted to ICU at any time
since study enrolment?

**vaccinated_covid19**: Bool. True when subject has received any dose of a
COVID-19 vaccine

**vaccinated_covid19_dates**: List. Dates when subject received a COVID-19
vaccine.

Visit
-----

Expand Down
15 changes: 15 additions & 0 deletions schemas/dev/subject.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,21 @@
"type": "boolean",
"description": "Admitted to ICU",
"category": "outcome"
},
"vaccinated_covid19": {
"type": "boolean",
"description": "Has received any dose of a COVID-19 vaccine",
"category": "vaccinations"
},
"vaccinated_covid19_dates": {
"type": "array",
"items": {
"type": "string",
"format": "date"
},
"uniqueItems": true,
"description": "Dates on which COVID-19 vaccinations were given",
"category": "vaccinations"
}
}
}

0 comments on commit e5a6ff5

Please sign in to comment.