Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed 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 the use of the BodySiteReference extension
Table View
Specimen.id[0] | UKCore-Extension-BodySiteReference-Example |
Specimen.text[0].status[0] | additional |
Specimen.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate the use of the BodySiteReference extension</div> |
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] | 28520004 |
Specimen.collection[0].method[0].coding[0].display[0] | Venipuncture for blood test |
Specimen.collection[0].bodySite[0].extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BodySiteReference |
Specimen.collection[0].bodySite[0].extension[0].value[0].reference[0] | BodyStructure/UKCore-BodyStructure-MedianCubitalVeinExample |
Specimen.collection[0].bodySite[0].text[0] | vein on the inner left arm |
Tree View
Specimen |
id : UKCore-Extension-BodySiteReference-Example |
text |
status : additional |
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 |
collected : 2016-02-09T16:00:00Z |
method |
coding |
system : http://snomed.info/sct |
code : 28520004 |
display : Venipuncture for blood test |
bodySite |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BodySiteReference |
value |
reference : BodyStructure/UKCore-BodyStructure-MedianCubitalVeinExample |
text : vein on the inner left arm |
XML View
<Specimen xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-BodySiteReference-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <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="28520004" /> <display value="Venipuncture for blood test" /> </coding> </method> <bodySite> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BodySiteReference"> <valueReference> <reference value="BodyStructure/UKCore-BodyStructure-MedianCubitalVeinExample" /> </valueReference> </extension> <!-- **************extension end************** --> <text value="vein on the inner left arm" /> </bodySite> </collection> </Specimen>
JSON View
{ "resourceType": "Specimen", "id": "UKCore-Extension-BodySiteReference-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "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": "28520004", "display": "Venipuncture for blood test" } ] }, "bodySite": { "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BodySiteReference", "valueReference": { "reference": "BodyStructure/UKCore-BodyStructure-MedianCubitalVeinExample" } } ], "text": "vein on the inner left arm" } } }