KjDeviceUseStatement profile
The KjDeviceUseStatement profile is used 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. contained.recorderRef.code.coding, we prefer coding.display to always be set for completeness sake as well as coding.code and coding.system.
https://simplifier.net/kjernejournalr4/kjdeviceusestatement
Element | Norwegian Text | Description | Comment |
---|---|---|---|
id | Record id. | Id + meta.versionId is the unique identifier. | |
meta.versionId | Record version id. | ||
status | See below | Used for Status, see below. | Values can be active | completed | entered-in-error |
subject | Pasient | Patient using the device. | |
device | Reference to (mechanical) device used. | Use KjDevice contained reference. | |
recordedOn | Opprettet dato | When statement was recorded. | |
source | Hvem som gjorde første registrering | Who made the statement. Must always reference the original recorder of the resource. | Use PractitionerRole contained reference. |
extension.updater | Hvem som gjorde endring | Who changed this version of the resource. | Use PractitionerRole contained reference. |
extension.updatedDateTime | Tidspunkt endring | When this version of the resource was changed. | |
extension.sourceOfInformation | Kilde | Source of information. | |
note | Kommentar | Additional details (comments, instructions). | |
extension.validUntil | Implantat varsles til | Optional valid until date. | The registration may be displayed as inactive if its valid-until date has expired (the valid-until date is today or in the past). |
extension.implanted | Implantert | When (date/age) the device was implanted. |
Status
The status which the critical information record is in.
Status | Norwegian Text | Element Values | Comment |
---|---|---|---|
Active | Aktiv | status=active | Use when the registration is active. |
Refuted | Avkreftet | status=completed | Use when the registration is refuted. |
Deleted | Slettet | status=entered-in-error | When an erroneous registration. Use the REST delete endpoint. |
Inactive | Inaktiv | Not applicable | Not applicable. |
Example
DeviceUseStatement
{
"resourceType": "DeviceUseStatement",
"id": "178a5718-77c5-44d5-b69b-f253015adf68",
"meta": {
"versionId": "1",
"lastUpdated": "2021-03-14T12:21:53.852+01:00",
"profile": [ "http://nhn.no/kj/fhir/StructureDefinition/KjDeviceUseStatement" ]
},
"contained": [ {
"resourceType": "PractitionerRole",
"id": "recorderRef",
"practitioner": {
"identifier": {
"system": "urn:oid:2.16.578.1.12.4.1.4.4",
"value": "222200063"
},
"display": "Fos Perez, Jack"
},
"organization": {
"identifier": {
"system": "urn:oid:2.16.578.1.12.4.1.4.101",
"value": "100100223"
},
"display": "Andeby Legevakt"
},
"code": [ {
"coding": [ {
"system": "http://nhn.no/kj/fhir/CodeSystem/CategoriesOfHealthProfessionals",
"code": "LE",
"display": "Lege"
} ]
} ]
}, {
"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"
} ]
} ],
"extension": [ {
"url": "http://nhn.no/kj/fhir/StructureDefinition/KjValidUntil",
"valueDateTime": "2021-03-24T00:00:00+01:00"
}, {
"url": "http://nhn.no/kj/fhir/StructureDefinition/KjImplanted",
"valueDateTime": "2017-02-02T00:00:00+01:00"
}, {
"url": "http://nhn.no/kj/fhir/StructureDefinition/KjSourceOfInformation",
"valueCoding": {
"system": "http://nhn.no/kj/fhir/CodeSystem/SourceOfInformation",
"code": "7",
"display": "Opplyst av ansvarlig behandler"
}
} ],
"status": "active",
"subject": {
"reference": "Patient/13116900216"
},
"recordedOn": "2021-03-14T12:21:53+01:00",
"source": {
"reference": "#recorderRef"
},
"device": {
"reference": "#deviceRef"
},
"note": [ {
"text": "Ved akutte spørsmål kan Hjerteklinikken ved OUS - Ullevål sykehus kontaktes på telefon 26 99 99 99."
} ]
}