KjDevice profile
The KjDevice profile is used as a contained reference in the KjDeviceUseStatement profile to specify the type of (mechanical) device the patient has implanted, e.g. 'Pacemaker'.
Profile elements
Note that for all FHIR elements which has coding, e.g. type.coding, we prefer coding.display to always be set for completeness sake as well as coding.code and coding.system.
https://simplifier.net/kjernejournalr4/kjdevice
| Element | Norwegian Text | Description | Comment |
|---|---|---|---|
| type.coding.code | Implantat | Clinical code for implants and other foreign bodies. | Valid codes on simplifier.no. |
| note | Kommentar | Note. | Max 500 characters, inclusive lineshifts. |
Coding systems
ImplantsAndOtherForeignBodies (Implantat) can be registered on the following coding systems.
| FHIR coding system url | Coding system in the Coding System Service |
|---|---|
| http://nhn.no/kj/fhir/CodeSystem/ImplantsAndOtherForeignBodies | KJ_IMPLANTAT |
Example
Device
{
"resourceType": "Device",
"id": "deviceRef",
"status": "active",
"type": {
"coding": [ {
"system": "http://nhn.no/kj/fhir/CodeSystem/ImplantsAndOtherForeignBodies",
"code": "9",
"display": "Pacemaker"
} ]
},
"note": [ {
"text": "Medtronic Pacemaker modell Adapta - ADDRS2"
} ]
} ]
}