Skip to content

Commit

Permalink
Add Four new Covid-19 Vaccine Codes
Browse files Browse the repository at this point in the history
  • Loading branch information
bencap committed Sep 5, 2024
1 parent 2b9550d commit 9f8866e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,8 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]

# COVID-19 vaccine CVX codes were sourced from here:
# https://www.cdc.gov/vaccines/programs/iis/COVID-19-related-codes.html
# this link has moved:
# https://www.cdc.gov/iis/code-sets/covid-19-related-codes.html
cvx_codes = {
88: {
"system": "http://hl7.org/fhir/sid/cvx",
Expand Down Expand Up @@ -389,7 +391,7 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]
309: {
"system": "http://hl7.org/fhir/sid/cvx",
"code": "309",
"display": "COVID-19, mRNA, LNP-S, PF, tris-sucrose, 30 mcg/0.3 mL"
"display": "COVID-19, mRNA, LNP-S, PF, tris-sucrose, 30 mcg/0.3 mL"
},
311: {
"system": "http://hl7.org/fhir/sid/cvx",
Expand Down Expand Up @@ -445,8 +447,12 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]
"covid-19 pfizer mrna bivalent 5-11 yrs old": 301,
"covid-19 pfizer mrna bivalent 6 mos-4 yrs old": 308,
"covid-19 pfizer mrna 2023-24 12 yrs and older (comirnaty)": 309,
"covid-19 pfizer mrna 12 yrs and older (comirnaty)": 309,
"covid-19 moderna mrna 2023-24 6 mos-11 yrs old": 311,
"covid-19 moderna mrna 6 mos-11 yrs old": 311,
"covid-19 moderna mrna 2023-24 12 yrs and older (spikevax)": 312,
"covid-19 moderna mrna 12 yrs and older (spikevax)": 312,
"covid-19 novavax subunit adjuvanted monovalent": 313,
"covid-19 sinovac inactivated, non-us (coronavac)": 511,
"": None
}
Expand Down

0 comments on commit 9f8866e

Please sign in to comment.