KjConditionInfection profile

The KjConditionInfection is used for registration of the infectious disease the patient has.

Profile elements

https://simplifier.net/kjernejournalr4/kjconditioninfection

Element Description Comment
id Record id id + meta.versionId is the unique identifier
meta.versionId Record version id
clinicalStatus active | inactive
verificationStatus confirmed | refuted | entered-in-error
category Type of critical information
category.coding Category coding for infection
code Code for the infection
code.coding Coding for for type of infection
code.coding.extension Extensions for extra information for this type of infection
"http://nhn.no/kj/fhir/StructureDefinition/CodeInfoText" - Code description text
"http://nhn.no/kj/fhir/StructureDefinition/UrlInfectionInformation" - URL to information
"http://nhn.no/kj/fhir/StructureDefinition/UrlInfectionGuide" - URL to guide
These extensions is linked to the code, and will only be returned in read, and will not be stored in write operations.
See code example below.
code.text Text if no proper code is found
subject Who has the condition
onset Estimated or actual date, date-time, or age
recordedDate Date record was first recorded
recorder Who recorded this condition first Use contained reference
note Note
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

Condition infection

{
  "resourceType": "Condition",
  "id": "07f6b4cb-f784-4a33-8aa8-ec28f66c5d19",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2021-03-14T12:15:27.073+01:00",
    "profile": [ "http://nhn.no/kj/fhir/StructureDefinition/KjConditionInfection" ]
  },
  "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/KjSourceOfInformation",
    "valueCoding": {
      "system": "http://nhn.no/kj/fhir/CodeSystem/SourceOfInformation",
      "code": "1",
      "display": "Resultat av tester / analyser"
    }
  } ],
  "clinicalStatus": {
    "coding": [ {
      "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
      "code": "active",
      "display": "Active"
    } ]
  },
  "verificationStatus": {
    "coding": [ {
      "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
      "code": "confirmed",
      "display": "Confirmed"
    } ]
  },
  "category": [ {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/SubcategoriesOfCriticalInformation",
      "code": "10",
      "display": "Smitte"
    } ]
  } ],
  "code": {
    "coding": [ {
      "system": "http://nhn.no/kj/fhir/CodeSystem/TypeOfInfection",
      "code": "1",
      "display": "Sykdom forårsaket av meticillin-resistente gule stafylokokker (MRSA)"
    } ]
  },
  "subject": {
    "reference": "Patient/13116900216"
  },
  "onsetDateTime": "2021-03-02T00:00:00+01:00",
  "recordedDate": "2021-03-14T12:15:27+01:00",
  "recorder": {
    "reference": "#recorderRef"
  }
}

Coding extension

 "code": {
    "coding": [ {
      "extension": [ {
        "url": "http://nhn.no/kj/fhir/StructureDefinition/CodeInfoText",
        "valueReference": {
          "reference": "Bakterier kan utvikle resistens mot ett eller flere antibiotika. Bakterier som er resistente mot to eller flere antibiotika kalles multiresistente."
        }
      }, {
        "url": "http://nhn.no/kj/fhir/StructureDefinition/UrlInfectionGuide",
        "valueReference": {
          "reference": "https://www.fhi.no/nettpub/smittevernveilederen/"
        }
      } ],
      "system": "http://nhn.no/kj/fhir/CodeSystem/TypeOfInfection",
      "code": "4",
      "display": "Sykdom forårsaket av annen multiresistent mikrobe"
    } ]
  }