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

Note that for all FHIR elements which has coding, e.g. code.coding and category.coding, we prefer coding.display to always be set for completeness sake as well as coding.code and coding.system.

https://simplifier.net/kjernejournalr4/kjprocedure

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 in-progress | completed | entered-in-error
category.coding.code Pågående behandling 6=Pågående behandling Type of critical information.
code.coding Behandling Clinical code for the ongoing treatment.
code.text Spesifisering Description for type of treatment.
subject Pasient Who the ongoing treatment applies to.
performed Behandlingsstart When (date/age) the ongoing treatment was started.
extension.recordedDate Opprettet dato When the ongoing treatment was recorded.
recorder Hvem som gjorde første registrering Who recorded the ongoing treatment first. 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.
extension.validUntil Behandling 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).
note Kommentar Note.

Status

The status which the critical information record is in.

Status Norwegian Text Element Values Comment
Active Aktiv status=in-progress 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

{
  "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.4.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"
  } ]
}