UK Core Implementation Guide 1.0.0 - STU1

asserter

A reference to the source of the information about the allergy. The resource being referenced SHOULD conform to one of the following:

Provider Systems

Provider systems SHOULD provide at least the following minimum data within the referenced resource.

Practitioner

  • identifier
  • name

PractitionerRole

  • identifier
  • practitioner (as above) OR organisation.identifier OR healthcareService.identifier

Patient

  • identifier:nhsNumber
  • name

RelatedPerson

  • identifier
  • name
  • patient

Where a human asserter is not captured or cannot be confirmed, i.e. a Practitioner, Patient or RelatedPerson, the provider systems SHOULD reference an PractitionerRole.organisation and/or PractitionerRole.healthcareService within a PractitionerRole, using the associated ODS code.

For example, asserted by "MILTON KEYNES UNIVERSITY HOSPITAL NHS FOUNDATION TRUST".

Table View

PractitionerRole.id[0]UKCore-PractitionerRole-Sn-Organization-Code-Example
PractitionerRole.identifier[0].system[0]https://fhir.nhs.uk/Id/sds-role-profile-id
PractitionerRole.identifier[0].value[0]100334993514
PractitionerRole.organization[0].identifier[0].system[0]https://fhir.nhs.uk/Id/ods-organization-code
PractitionerRole.organization[0].identifier[0].value[0]RD8
PractitionerRole.organization[0].display[0]MILTON KEYNES UNIVERSITY HOSPITAL NHS FOUNDATION TRUST

Tree View

PractitionerRole

XML View

<PractitionerRole xmlns="http://hl7.org/fhir">
<id value="UKCore-PractitionerRole-Sn-Organization-Code-Example" />
<!-- **************snippet start************** -->
<system value="https://fhir.nhs.uk/Id/sds-role-profile-id" />
<value value="100334993514" />
</identifier>
<system value="https://fhir.nhs.uk/Id/ods-organization-code" />
<value value="RD8" />
</identifier>
<display value="MILTON KEYNES UNIVERSITY HOSPITAL NHS FOUNDATION TRUST" />
</organization>
<!-- **************snippet end************** -->
</PractitionerRole>

JSON View

{
"resourceType": "PractitionerRole",
"id": "UKCore-PractitionerRole-Sn-Organization-Code-Example",
{
"system": "https://fhir.nhs.uk/Id/sds-role-profile-id",
"value": "100334993514"
}
],
"system": "https://fhir.nhs.uk/Id/ods-organization-code",
"value": "RD8"
},
"display": "MILTON KEYNES UNIVERSITY HOSPITAL NHS FOUNDATION TRUST"
}
}
back to top