KjProcedure profile

The KjProcedure profile is used for registration of the patient ongoing treatment (pågående behandling), or that the patient is in a transplant queue etc.

Profile elements

https://simplifier.net/kjernejournalr4/kjprocedure

Element Description Comment
id Record id id + meta.versionId is the unique identifier
meta.versionId Record version id
status in-progress | completed | entered-in-error
category Classification of the procedure
code.coding Code defined by a terminology system
code.text Description for type of treatment
subject Reference to patient ongoing the treatment
performed When (date/age) the procedure was performed
recorder Who recorded the procedure first Use contained reference
note Note
extension.recordedDate When the procedure was recorded
extension.sourceOfInformtion Source of information
extension.updater Who changed this version of the resource Use contained reference
extension.updatedDateTime When this version of the resource was changed
extension.validUntil Optional valid until date

Example

{
  "resourceType": "Procedure",
  "id": "fbf414a9-651f-4965-9ae4-58b3c6baef33",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2021-03-14T12:43:58.413+01:00",
    "profile": [ "http://nhn.no/kj/fhir/StructureDefinition/KjProcedure" ]
  },
  "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.2.101",
        "value": "100100223"
      },
      "display": "Andeby Legevakt"
    },
    "code": [ {
      "coding": [ {
        "system": "http://nhn.no/kj/fhir/CodeSystem/CategoriesOfHealthProfessionals",
        "code": "LE",
        "display": "Lege"
      } ]
    } ]
  } ],
  "extension": [ {
    "url": "http://nhn.no/kj/fhir/StructureDefinition/KjRecordedDateTime",
    "valueDateTime": "2021-03-14T12:43:58+01:00"
  }, {
    "url": "http://nhn.no/kj/fhir/StructureDefinition/KjSourceOfInformation",
    "valueCoding": {
      "system": "http://nhn.no/kj/fhir/CodeSystem/SourceOfInformation",
      "code": "2",
      "display": "Observert av registrerende helsepersonell"
    }
  } ],
  "status": "in-progress",
  "category": {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/SubcategoriesOfCriticalInformation",
      "code": "6",
      "display": "Behandling"
    } ]
  },
  "code": {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/OngoingTreatment",
      "code": "6",
      "display": "LAR (Legemiddelassistert rehabilitering)"
    } ],
    "text": "Metadon"
  },
  "subject": {
    "reference": "Patient/13116900216"
  },
  "performedDateTime": "2021-03-09T00:00:00+01:00",
  "recorder": {
    "reference": "#recorderRef"
  },
  "note": [ {
    "text": "Daglig dose fra apotek"
  } ]
}