...
The KjFlag profile is used for registration of other other procedural changes the patient has. See also the KjConsent profile.
...
https://simplifier.net/kjernejournalr4/kjflag
Element | Description | Comment |
---|---|---|
id | Record id | id + meta.versionId is the unique identifier |
meta.versionId | Version id |
|
status | active | inactive | entered-in-error | |
category | Flag category | |
code.coding | The procedure code | |
code.text | Text if no proper code is found | |
subject | Who is flag about | |
period | Time period when flag is active | |
author | Reference(Device | Organization | Patient | Practitioner | PractitionerRole) | |
extension.note | ||
extension.updater | Who changed the resource | |
extension.updatedDateTime | When the resource last changed |
Example
Code Block |
---|
{ "resourceType": "Flag", "id": "1b736f6c-05f6-4742-82d5-439f0cd7f60d", "meta": { "versionId": "1", "lastUpdated": "2021-03-14T12:38:27.478+01:00", "profile": [ "http://nhn.no/kj/fhir/StructureDefinition/KjFlag" ] }, "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/KjText", "valueString": "Pasienten har en religiøs overbevisning" } ], "status": "active", "category": [ { "coding": [ { "system": "http://nhn.no/kj/fhir/CodeSystem/SubcategoriesOfCriticalInformation", "code": "9", "display": "Annen prosedyreendring" } ] } ], "code": { "coding": [ { "system": "http://nhn.no/kj/fhir/CodeSystem/OtherProceduralChanges", "code": "1", "display": "Pasienten har reservert seg mot blodtransfusjon/blodprodukter" } ] }, "subject": { "reference": "Patient/13116900216" }, "period": { "start": "2021-03-14T12:38:27+01:00" }, "author": { "reference": "#recorderRef" } } |
...