Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate a request for a lab test
Table View
ServiceRequest.id[0] | UKCore-ServiceRequest-Lab-CReactiveProtein-Example |
ServiceRequest.status[0] | active |
ServiceRequest.intent[0] | order |
ServiceRequest.category[0].coding[0].system[0] | http://snomed.info/sct |
ServiceRequest.category[0].coding[0].code[0] | 108252007 |
ServiceRequest.category[0].coding[0].display[0] | Laboratory procedure |
ServiceRequest.code[0].coding[0].system[0] | http://snomed.info/sct |
ServiceRequest.code[0].coding[0].code[0] | 135842001 |
ServiceRequest.code[0].coding[0].display[0] | Serum C reactive protein level |
ServiceRequest.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
ServiceRequest.authoredOn[0] | 2022-05-23T12:14:00+00:00 |
ServiceRequest.requester[0].reference[0] | Practitioner/UKCore-Practitioner-PharmacistJimmyChuck-Example |
ServiceRequest.performer[0].reference[0] | Organization/UKCore-Organization-LeedsTeachingHospital-Example |
ServiceRequest.locationCode[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/v3-RoleCode |
ServiceRequest.locationCode[0].coding[0].code[0] | OUTLAB |
ServiceRequest.locationCode[0].coding[0].display[0] | outpatient laboratory |
ServiceRequest.reasonCode[0].coding[0].system[0] | http://snomed.info/sct |
ServiceRequest.reasonCode[0].coding[0].code[0] | 298167002 |
ServiceRequest.reasonCode[0].coding[0].display[0] | Finger joint inflamed |
ServiceRequest.reasonReference[0].reference[0] | Observation/UKCore-Observation-FingerJointInflamed-Example |
ServiceRequest.reasonReference[0].display[0] | Observation of finger joint inflammation. |
ServiceRequest.patientInstruction[0] | ADVICE GIVEN: If there are any new symptoms, or if the condition gets worse, changes or you have any other concerns, contact your GP. |
XML View
<ServiceRequest xmlns="http://hl7.org/fhir"> <id value="UKCore-ServiceRequest-Lab-CReactiveProtein-Example" /> <status value="active" /> <intent value="order" /> <category> <coding> <system value="http://snomed.info/sct" /> <code value="108252007" /> <display value="Laboratory procedure" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="135842001" /> <display value="Serum C reactive protein level" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <authoredOn value="2022-05-23T12:14:00+00:00" /> <requester> <reference value="Practitioner/UKCore-Practitioner-PharmacistJimmyChuck-Example" /> </requester> <performer> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </performer> <locationCode> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" /> <code value="OUTLAB" /> <display value="outpatient laboratory" /> </coding> </locationCode> <reasonCode> <coding> <system value="http://snomed.info/sct" /> <code value="298167002" /> <display value="Finger joint inflamed" /> </coding> </reasonCode> <reasonReference> <reference value="Observation/UKCore-Observation-FingerJointInflamed-Example" /> <display value="Observation of finger joint inflammation." /> </reasonReference> <patientInstruction value="ADVICE GIVEN: If there are any new symptoms, or if the condition gets worse, changes or you have any other concerns, contact your GP." /> </ServiceRequest>
JSON View
{ "resourceType": "ServiceRequest", "id": "UKCore-ServiceRequest-Lab-CReactiveProtein-Example", "status": "active", "intent": "order", "category": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "108252007", "display": "Laboratory procedure" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "135842001", "display": "Serum C reactive protein level" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "authoredOn": "2022-05-23T12:14:00+00:00", "requester": { "reference": "Practitioner/UKCore-Practitioner-PharmacistJimmyChuck-Example" }, "performer": [ { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } ], "locationCode": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "OUTLAB", "display": "outpatient laboratory" } ] } ], "reasonCode": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "298167002", "display": "Finger joint inflamed" } ] } ], "reasonReference": [ { "reference": "Observation/UKCore-Observation-FingerJointInflamed-Example", "display": "Observation of finger joint inflammation." } ], "patientInstruction": "ADVICE GIVEN: If there are any new symptoms, or if the condition gets worse, changes or you have any other concerns, contact your GP." }