KjPractitionerRole profile
The KjPractitionerRole profile is used for registration of details for the healthcare professional, including the organization, which recorded or updated the critical information record.
Profile elements
Note that for all FHIR elements which has coding, e.g. code.coding, we prefer coding.display to always be set for completeness sake as well as coding.code and coding.system.
https://simplifier.net/kjernejournalr4/kjpractitionerrole
Element | Description |
---|---|
practitioner | The practitioner which recorded or updated the record. |
practitioner.identifier.value | The HPR number of the practitioner. |
practitioner.identifier.system | The coding system for the HPR number: urn:oid:2.16.578.1.12.4.1.4.4 |
practitioner.display | The practitioner name. |
organization | The organization the practitioner belongs to. |
organization.identifier.value | Organization number. |
organization.identifier.system | The coding system for the organization: urn:oid:2.16.578.1.12.4.1.4.101 |
organization.display | Organization name. |
code | The practitioner HPR role. |
code.coding.code | The practitioner HPR role code. |
code.coding.display | The display text for the HPR role. |
code.coding.system | The coding system for the HPR role: http://nhn.no/kj/fhir/CodeSystem/CategoriesOfHealthProfessionals |
Example
"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"
} ]
} ]