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 blood specimen that was taken by a finger prick
Table View
Specimen.id[0] | UKCore-Specimen-BloodSpecimen-Example |
Specimen.status[0] | available |
Specimen.type[0].coding[0].system[0] | http://snomed.info/sct |
Specimen.type[0].coding[0].code[0] | 119297000 |
Specimen.type[0].coding[0].display[0] | Blood specimen |
Specimen.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Specimen.receivedTime[0] | 2016-02-05T11:10:00Z |
Specimen.collection[0].collector[0].reference[0] | Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example |
Specimen.collection[0].collected[0] | 2016-02-09T16:00:00Z |
Specimen.collection[0].method[0].coding[0].system[0] | http://snomed.info/sct |
Specimen.collection[0].method[0].coding[0].code[0] | 278450005 |
Specimen.collection[0].method[0].coding[0].display[0] | Finger-prick sampling (procedure) |
Specimen.collection[0].bodySite[0].coding[0].system[0] | http://snomed.info/sct |
Specimen.collection[0].bodySite[0].coding[0].code[0] | 182266005 |
Specimen.collection[0].bodySite[0].coding[0].display[0] | Tip of index finger |
XML View
<Specimen xmlns="http://hl7.org/fhir"> <id value="UKCore-Specimen-BloodSpecimen-Example" /> <status value="available" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="119297000" /> <display value="Blood specimen" /> </coding> </type> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <receivedTime value="2016-02-05T11:10:00Z" /> <collection> <collector> <reference value="Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" /> </collector> <collectedDateTime value="2016-02-09T16:00:00Z" /> <method> <coding> <system value="http://snomed.info/sct" /> <code value="278450005" /> <display value="Finger-prick sampling (procedure)" /> </coding> </method> <bodySite> <coding> <system value="http://snomed.info/sct" /> <code value="182266005" /> <display value="Tip of index finger" /> </coding> </bodySite> </collection> </Specimen>
JSON View
{ "resourceType": "Specimen", "id": "UKCore-Specimen-BloodSpecimen-Example", "status": "available", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "119297000", "display": "Blood specimen" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "receivedTime": "2016-02-05T11:10:00Z", "collection": { "collector": { "reference": "Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" }, "collectedDateTime": "2016-02-09T16:00:00Z", "method": { "coding": [ { "system": "http://snomed.info/sct", "code": "278450005", "display": "Finger-prick sampling (procedure)" } ] }, "bodySite": { "coding": [ { "system": "http://snomed.info/sct", "code": "182266005", "display": "Tip of index finger" } ] } } }