@@ -305,6 +305,8 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]
305
305
306
306
# COVID-19 vaccine CVX codes were sourced from here:
307
307
# https://www.cdc.gov/vaccines/programs/iis/COVID-19-related-codes.html
308
+ # this link has moved:
309
+ # https://www.cdc.gov/iis/code-sets/covid-19-related-codes.html
308
310
cvx_codes = {
309
311
88 : {
310
312
"system" : "http://hl7.org/fhir/sid/cvx" ,
@@ -389,7 +391,7 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]
389
391
309 : {
390
392
"system" : "http://hl7.org/fhir/sid/cvx" ,
391
393
"code" : "309" ,
392
- "display" : "COVID-19, mRNA, LNP-S, PF, tris-sucrose, 30 mcg/0.3 mL"
394
+ "display" : "COVID-19, mRNA, LNP-S, PF, tris-sucrose, 30 mcg/0.3 mL"
393
395
},
394
396
311 : {
395
397
"system" : "http://hl7.org/fhir/sid/cvx" ,
@@ -445,8 +447,12 @@ def create_immunization(record: dict, patient_reference: dict) -> Optional[list]
445
447
"covid-19 pfizer mrna bivalent 5-11 yrs old" : 301 ,
446
448
"covid-19 pfizer mrna bivalent 6 mos-4 yrs old" : 308 ,
447
449
"covid-19 pfizer mrna 2023-24 12 yrs and older (comirnaty)" : 309 ,
450
+ "covid-19 pfizer mrna 12 yrs and older (comirnaty)" : 309 ,
448
451
"covid-19 moderna mrna 2023-24 6 mos-11 yrs old" : 311 ,
452
+ "covid-19 moderna mrna 6 mos-11 yrs old" : 311 ,
449
453
"covid-19 moderna mrna 2023-24 12 yrs and older (spikevax)" : 312 ,
454
+ "covid-19 moderna mrna 12 yrs and older (spikevax)" : 312 ,
455
+ "covid-19 novavax subunit adjuvanted monovalent" : 313 ,
450
456
"covid-19 sinovac inactivated, non-us (coronavac)" : 511 ,
451
457
"" : None
452
458
}
0 commit comments