Skip to content

Commit

Permalink
Add more of the fields from the day zero schema #2714
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg authored and abhidg committed Sep 19, 2022
1 parent add8110 commit 4d08d77
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,31 @@
],
"is_list": true
},
{
"key": "race",
"type": "string",
"data_dictionary_text": "Race of the individual; can select multiple options.",
"required": true,
"values": [
"Native Hawaiian or Other Pacific Islander",
"Asian",
"American Indian or Alaska Native",
"Black or African American",
"White",
"other"
],
"is_list": true
},
{
"key": "ethnicity",
"type": "string",
"data_dictionary_text": "Ethnicity of the individual, per the U.S. census definition.",
"values": [
"Hispanic or Latino",
"Not Hispanic or Latino",
"other"
]
},
{
"key": "confirmationDate",
"type": "date",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"caseStatus": "omit_error",
"pathogenStatus": "endemic",
"sexAtBirth": "female",
"gender": ["woman"]
"gender": ["woman"],
"race": ["White"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"caseStatus": "probable",
"pathogenStatus": "emerging",
"sexAtBirth": "female",
"gender": []
"gender": [],
"race": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
"pathogenStatus": "unknown",
"sexAtBirth": "female",
"gender": ["non-binary", "other"],
"gender_other": "womxn"
"gender_other": "womxn",
"race": []
}

0 comments on commit 4d08d77

Please sign in to comment.