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 urine sample
Table View
Specimen.id[0] | UKCore-Specimen-UrineSpecimen-Example |
Specimen.status[0] | available |
Specimen.type[0].coding[0].system[0] | http://snomed.info/sct |
Specimen.type[0].coding[0].code[0] | 122575003 |
Specimen.type[0].coding[0].display[0] | Urine specimen |
Specimen.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Specimen.receivedTime[0] | 2023-05-10T11:56:00Z |
Specimen.collection[0].collector[0].reference[0] | Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example |
Specimen.collection[0].method[0].coding[0].system[0] | http://snomed.info/sct |
Specimen.collection[0].method[0].coding[0].code[0] | 73416001 |
Specimen.collection[0].method[0].coding[0].display[0] | Urine specimen collection, clean catch |
XML View
<Specimen xmlns="http://hl7.org/fhir"> <id value="UKCore-Specimen-UrineSpecimen-Example" /> <status value="available" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="122575003" /> <display value="Urine specimen" /> </coding> </type> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <receivedTime value="2023-05-10T11:56:00Z" /> <collection> <collector> <reference value="Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" /> </collector> <method> <coding> <system value="http://snomed.info/sct" /> <code value="73416001" /> <display value="Urine specimen collection, clean catch" /> </coding> </method> </collection> </Specimen>
JSON View
{ "resourceType": "Specimen", "id": "UKCore-Specimen-UrineSpecimen-Example", "status": "available", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "122575003", "display": "Urine specimen" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "receivedTime": "2023-05-10T11:56:00Z", "collection": { "collector": { "reference": "Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" }, "method": { "coding": [ { "system": "http://snomed.info/sct", "code": "73416001", "display": "Urine specimen collection, clean catch" } ] } } }