KjConsent profile

The KjConsent profile is for registration of the consent the patient has given regarding treatment.

Profile elements

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

https://simplifier.net/kjernejournalr4/kjconsent

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 | inactive | entered-in-error
category.coding.code Avgrensning av livsforlengende behandling 8=Avgrensning av livsforlengende behandling Type of critical information.
policyRule.coding Consent policy code. The code must always be '1', see example below.
scope.coding Which area this resource covers
adr - Actions to be taken if they are no longer able to make decisions for themselves.
The code must always be 'adr', see example below.
patient Pasient Who the consent applies to.
dateTime Opprettet dato When this Consent was issued / created.
performer Hvem som gjorde første registrering Who recorded this consent 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.validUntil Gyldig til Required valid until date. NB! The consent should be displayed as active even if its valid-until date has passed (the valid-until date is today or in the past).
extension.note Kommentar Note.

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=inactive 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": "Consent",
  "id": "88645021-fed8-4811-bbe2-9badda667ba3",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2021-03-14T12:18:32.078+01:00",
    "profile": [ "http://nhn.no/kj/fhir/StructureDefinition/KjConsent" ]
  },
  "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/KjValidUntil",
    "valueDateTime": "2021-03-30T00:00:00+02:00"
  }, {
    "url": "http://nhn.no/kj/fhir/StructureDefinition/KjText",
    "valueString": "Pasient har kreft med full spredning"
  } ],
  "status": "active",
  "scope": {
    "coding": [ {
      "system": "http://terminology.hl7.org/CodeSystem/consentscope",
      "code": "adr",
      "display": "Advanced Care Directive"
    } ]
  },
  "category": [ {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/SubcategoriesOfCriticalInformation",
      "code": "8",
      "display": "Avgrensning av livsforlengende behandling"
    } ]
  } ],
  "patient": {
    "reference": "Patient/13116900216"
  },
  "dateTime": "2021-03-14T12:18:32+01:00",
  "performer": [ {
    "reference": "#recorderRef"
  } ],
  "policyRule": {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/ConsentPolicies",
      "code": "1",
      "display": "Avgrensning av livsforlengende behandling"
    } ]
  }
}