The CDA module uses FHIR ConceptMap resources to support vocabulary-to-vocabulary translations, e.g. values from
HL7EntityNameUse
in CDA to NameUse
in FHIR. Users can customize these translations by uploading their own ConceptMaps (see below), in addition to some light module configuration.
Terminology overrides can be added by creating FHIR ConceptMap resources containing whichever overrides are necessary. So long as each element specifies the source CodeSystem URI, and the target CodeSystem URI, the translation should be properly applied.
Example: anonymizing a name. Suppose you want to apply the FHIR NameUse
of ANONYMOUS
whenever a name has the CDA HL7EntityNameUse
value of L
. You could do this with a ConceptMap like the one below.
{
"resourceType" : "ConceptMap",
"url" : "<some uri you choose>",
"status" : "active",
"group" : [{
"source" : "2.16.840.1.113883.5.45",
"target" : "http://hl7.org/fhir/name-use",
"element" : [{
"code" : "L",
"target" : [{
"code" : "anonymous",
"display" : "Anonymous",
"equivalence" : "relatedto"
}]
}]
}]
}
Note that ConceptMap.url must not share our namespace (https://smilecdr.com/fhir/ns/ConceptMap/
). Additionally, this is only a bare-minimum ConceptMap. One would probably want to include more of the optional fields on the resource.
To actually apply the translation, first set up a FHIR REST endpoint in front of whichever FHIR storage module is being used to satisfy the CDA module's validation support dependency. Next, POST your ConceptMap the same way you would any other resource. The new translation will be available within a minute or so.
The default mappings for FHIR DSTU3 are summarised in the following tables.
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
55561003
|
Active (qualifier value)
|
active
|
Active
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
73425007
|
Inactive (qualifier value)
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
413322009
|
Problem resolved (finding)
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/allergy-verification-status
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
other
|
unknown/other
|
O
|
Other
|
urn:oid:2.16.840.1.113883.5.111
|
http://hl7.org/fhir/v2/0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
55561003
|
Active (qualifier value)
|
active
|
Active
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
73425007
|
Inactive (qualifier value)
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
413322009
|
Problem resolved (finding)
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-clinical-status
|
55561003
|
Active
|
active
|
Active
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
73425007
|
Inactive
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
413322009
|
Problem resolved
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
246455001
|
Recurrence
|
recurrence
|
Recurrence
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
263855007
|
Relapse phase
|
relapse
|
Relapse
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
277022003
|
Remission phase
|
remission
|
Remission
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
73425007
|
Inactive
|
unknown
|
Unknown
|
http://snomed.info/sct
|
http://hl7.org/fhir/condition-clinical
|
The default mappings for FHIR R4 are summarised in the following tables.
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
55561003
|
Active (qualifier value)
|
active
|
Active
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
73425007
|
Inactive (qualifier value)
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
413322009
|
Problem resolved (finding)
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
CDA Code | CDA Display | FHIR Code | FHIR Display | CDA URI | FHIR URI |
PATOBJ
|
patient objection
|
PATOBJ
|
patient objection
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
http://terminology.hl7.org/CodeSystem/v3-ActReason
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
cancelled
|
cancelled
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
completed
|
completed
|
active
|
Active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
suspended
|
suspended
|
inactive
|
Inactive
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/device-status
|
active
|
active
|
registered
|
Registered
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
cancelled
|
cancelled
|
cancelled
|
Cancelled
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
held
|
held
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
suspended
|
suspended
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/diagnostic-report-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
new
|
new
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
held
|
held
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
suspended
|
suspended
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
normal
|
normal
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
obsolete
|
obsolete
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
completed
|
completed
|
completed
|
completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
aborted
|
aborted
|
stopped
|
stopped
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
active
|
active
|
active
|
active
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
nullified
|
nullified
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/CodeSystem/medication-status
|
completed
|
completed
|
final
|
Final
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/observation-status
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
cancelled
|
cancelled
|
not-done
|
Not Done
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
aborted
|
aborted
|
entered-in-error
|
Entered in Error
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
in-progress
|
In Progress
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
active
|
active
|
preparation
|
Preparation
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/event-status
|
PHYS
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PHY
|
physical visit address
|
physical
|
Physical
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
PST
|
postal address
|
postal
|
Postal
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-type
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
TMP
|
temporary address
|
temp
|
Temporary
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
BAD
|
bad address
|
old
|
Old / Incorrect
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/address-use
|
HP
|
primary home
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
H
|
home address
|
home
|
Home
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
WP
|
work place
|
work
|
Work
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
TMP
|
temporary address
|
temp
|
Temp
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
BAD
|
bad address
|
old
|
Old
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
MC
|
mobile contact
|
mobile
|
Mobile
|
http://terminology.hl7.org/CodeSystem/v3-AddressUse
|
http://hl7.org/fhir/contact-point-use
|
m
|
Male
|
male
|
Male
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
f
|
Female
|
female
|
Female
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
un
|
Undifferentiated
|
unknown
|
Unknown
|
http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender
|
http://hl7.org/fhir/administrative-gender
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
aborted
|
aborted
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-verification
|
completed
|
completed
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
active
|
active
|
confirmed
|
Confirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
suspended
|
suspended
|
unconfirmed
|
Unconfirmed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
aborted
|
aborted
|
refuted
|
Refuted
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/condition-ver-status
|
tel
|
Telecom
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
phone
|
Telephone
|
phone
|
Phone
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
email
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
mailto
|
E-mail
|
email
|
Email
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
fax
|
Fax
|
fax
|
Fax
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
http
|
Website
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
https
|
Website (secure connection)
|
url
|
URL
|
https://smilecdr.com/fhir/ns/parsed-cda-contact-type
|
http://hl7.org/fhir/contact-point-system
|
L
|
Legal
|
usual
|
Usual
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
P
|
pseudonym
|
nickname
|
Nickname
|
2.16.840.1.113883.5.45
|
http://hl7.org/fhir/name-use
|
critl
|
low criticality
|
low
|
Low Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
crith
|
high criticality
|
high
|
High Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
critu
|
unable to assess criticality
|
unable-to-assess
|
Unable to Assess Risk
|
http://terminology.hl7.org/CodeSystem/v3-ObservationValue
|
http://hl7.org/fhir/allergy-intolerance-criticality
|
completed
|
completed
|
completed
|
Completed
|
http://terminology.hl7.org/CodeSystem/v3-ActStatus
|
http://hl7.org/fhir/history-status
|
econ
|
emergency contact
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
ext
|
extended family member
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
guard
|
guardian
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
frnd
|
unrelated friend
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
sps
|
spouse
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
dompart
|
domestic partner
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
husb
|
husband
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
wife
|
wife
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prn
|
parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fth
|
father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mth
|
mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nprn
|
natural parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nfth
|
natural father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
nmth
|
natural mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prinlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
prninlaw
|
parent in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fthinlaw
|
father in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
mthinlaw
|
mother in-law
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpprn
|
step parent
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpfth
|
step father
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
stpmth
|
step mother
|
C
|
Emergency Contact
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
work
|
work site
|
E
|
Employer
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
fammemb
|
family member
|
N
|
Next-of-Kin
|
urn:oid:2.16.840.1.113883.5.111
|
http://terminology.hl7.org/CodeSystem/v2-0131
|
419199007
|
Allergy to substance
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
414285001
|
Allergy to food
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
232347008
|
Allergy to animal dander
|
allergy
|
Allergy
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
59037007
|
Intolerance to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
235719002
|
Intolerance to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
420134006
|
Propensity to adverse reaction
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
419511003
|
Propensity to adverse reactions to drug
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418471000
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
418038007
|
Propensity to adverse reactions to food
|
intolerance
|
Intolerance
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-type
|
416098002
|
Allergy to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
59037007
|
Intolerance to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419511003
|
Propensity to adverse reactions to drug
|
medication
|
Medication
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
414285001
|
Allergy to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
235719002
|
Intolerance to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418471000
|
Propensity to adverse reactions to food
|
food
|
Food
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
232347008
|
Allergy to animal dander
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
420134006
|
Propensity to adverse reaction
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
418038007
|
Propensity to adverse reactions to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
419199007
|
Allergy to substance
|
environment
|
Environment
|
http://snomed.info/sct
|
http://hl7.org/fhir/allergy-intolerance-category
|
255604002
|
Mild
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371923003
|
Mild to moderate
|
mild
|
Mild
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
6736007
|
Moderate
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
371924009
|
Moderate to severe
|
moderate
|
Moderate
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
24484000
|
Severe
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
399166001
|
Fatal
|
severe
|
Severe
|
http://snomed.info/sct
|
http://hl7.org/fhir/reaction-event-severity
|
55561003
|
Active (qualifier value)
|
active
|
Active
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
73425007
|
Inactive (qualifier value)
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
413322009
|
Problem resolved (finding)
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical
|
55561003
|
Active
|
active
|
Active
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
73425007
|
Inactive
|
inactive
|
Inactive
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
413322009
|
Problem resolved
|
resolved
|
Resolved
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
246455001
|
Recurrence
|
recurrence
|
Recurrence
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
263855007
|
Relapse phase
|
relapse
|
Relapse
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
277022003
|
Remission phase
|
remission
|
Remission
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|
73425007
|
Inactive
|
unknown
|
Unknown
|
http://snomed.info/sct
|
http://terminology.hl7.org/CodeSystem/condition-clinical
|