KjConditionTransplantsAndOtherForeignBodies profile

The KjConditionTransplantsAndOtherForeignBodies profile is used for registration of transplants and other foreign objects in the body the patient has. Use for non-mechanical implants (transplants), e.g. 'Transplantert nyre'.

To filter out this specific Condition type from all other Conditions, for e.g. privacy reasons, you can use the query parameter 'criticalInfoType' as described in the documentation for endpoints.

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/kjconditiontransplantsandotherforeignbodies

Element Norwegian Text Description Comment
id Record id. Id + meta.versionId is the unique identifier.
meta.versionId Record version id.
clinicalStatus See below Used for Status, see below. Values can be active | inactive
verificationStatus See below Used for Status, see below. Values can be confirmed | refuted | entered-in-error
category.coding.code Implantat 7=Implantat (non-mechanical, see above). Type of critical information.
code.coding Implantat Clinical code for transplants and other foreign bodies.
code.text Spesifisering Text if no proper code is found.
subject Pasient Who has the condition.
onset Tidspunkt for hendelse Estimated or actual date, date-time, or age.
recordedDate Tidspunkt for første registrering Date record was first recorded.
recorder Hvem som gjorde første registrering Who recorded this condition first. Must always reference the original recorder of the resource. Use PractitionerRole contained reference.
note Kommentar Note.
extension.sourceOfInformation Kilde Source of information.
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 Varsles til Optional valid until date. The registration may be displayed as inactive if its valid-until date has expired.

Status

The status which the critical information record is in.

Status Norwegian Text Element Values Comment
Active Aktiv clinicalStatus=active and verificationStatus=confirmed Use when the registration is active.
Refuted Avkreftet clinicalStatus=inactive and verificationStatus=refuted Use when the registration is refuted.
Deleted Slettet clinicalStatus=null and verificationStatus=entered-in-error When an erroneous registration. Use the REST delete endpoint.
Inactive Inaktiv clinicalStatus=inactive and verificationStatus=confirmed Use to remove a duplicate registration.

Example

{
  "resourceType": "Condition",
  "id": "adee3a5a-61a0-4cec-bfb2-6fad3df552de",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2024-04-22T12:58:40.415+00:00",
    "profile": [
      "http://nhn.no/kj/fhir/StructureDefinition/KjConditionTransplantsAndOtherForeignBodies"
    ]
  },
  "contained": [
    {
      "resourceType": "PractitionerRole",
      "id": "recorderRef",
      "practitioner": {
        "identifier": {
          "system": "urn:oid:2.16.578.1.12.4.1.4.4",
          "value": "222200063"
        },
        "display": "Tandberg, Gard"
      },
      "organization": {
        "identifier": {
          "system": "urn:oid:2.16.578.1.12.4.1.4.101",
          "value": "986664203"
        },
        "display": "Sjøsiden Legesenter"
      },
      "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": "7",
        "display": "Opplyst av ansvarlig behandler"
      }
    }
  ],
  "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": "7",
          "display": "Implantat"
        }
      ]
    }
  ],
  "code": {
    "coding": [
      {
        "system": "http://nhn.no/kj/fhir/CodeSystem/ImplantsAndOtherForeignBodies",
        "code": "20",
        "display": "Transplantert nyre"
      }
    ],
    "text": "En spesifikasjon."
  },
  "subject": {
    "reference": "Patient/13116900216"
  },
  "onsetDateTime": "2017-03-14T00:00:00+01:00",
  "recordedDate": "1961-01-08T02:00:00+02:00",
  "recorder": {
    "reference": "#recorderRef"
  },
  "note": [
    {
      "text": "En kommentar."
    }
  ]
}