You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
actual: DocumentReference.type is entered as "text" , which is removed by DEID and also doesn't include the code. docref.type = CodeableConcept({'text': str(obsfact.concept_cd)}) # i2b2 Note Type
Expected:
code = obsfact.concept_cd
display = obsfact.TVAL_CHAR
coding = fhir_comon.fhir_coding(None, code, display)
docref.type = CodeableConcept(.... coding ...)
actual: DocumentReference.type is entered as "text" , which is removed by DEID and also doesn't include the code.
docref.type = CodeableConcept({'text': str(obsfact.concept_cd)}) # i2b2 Note Type
Expected:
code = obsfact.concept_cd
display = obsfact.TVAL_CHAR
coding = fhir_comon.fhir_coding(None, code, display)
docref.type = CodeableConcept(.... coding ...)
note coding.system is not required
https://build.fhir.org/datatypes-definitions.html#Coding.system
The text was updated successfully, but these errors were encountered: