Please note:
- This is an Implementation Guide for UK Core FHIR Assets in Development.
- There will be disruption as the content will be updated on an ad-hoc basis and with links not working.
- Therefore this Implementation Guide must not be implemented.
- Please follow the guidance on the "Contact Us" page if you need any assistance.
An example to illustrate a CT chest scan ImagingStudy
Table View
ImagingStudy.id[0] | UKCore-ImagingStudy-CTChestScan-Example |
ImagingStudy.status[0] | available |
ImagingStudy.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
ImagingStudy.started[0] | 2023-01-24T09:01:20+00:00 |
ImagingStudy.numberOfSeries[0] | 1 |
ImagingStudy.numberOfInstances[0] | 1 |
ImagingStudy.series[0].uid[0] | 2.16.124.113543.6003.2588828330.45298.17418.2723805630 |
ImagingStudy.series[0].number[0] | 3 |
ImagingStudy.series[0].modality[0].system[0] | http://dicom.nema.org/resources/ontology/DCM |
ImagingStudy.series[0].modality[0].code[0] | CT |
ImagingStudy.series[0].description[0] | CT Surview 180 |
ImagingStudy.series[0].numberOfInstances[0] | 1 |
ImagingStudy.series[0].bodySite[0].system[0] | http://snomed.info/sct |
ImagingStudy.series[0].bodySite[0].code[0] | 67734004 |
ImagingStudy.series[0].bodySite[0].display[0] | Thoracic segment of trunk |
ImagingStudy.series[0].instance[0].uid[0] | 2.16.124.113543.6003.189642796.63084.16748.2599092903 |
ImagingStudy.series[0].instance[0].sopClass[0].system[0] | urn:ietf:rfc:3986 |
ImagingStudy.series[0].instance[0].sopClass[0].code[0] | urn:oid:1.2.840.10008.5.1.4.1.1.2 |
ImagingStudy.series[0].instance[0].number[0] | 1 |
XML View
<ImagingStudy xmlns="http://hl7.org/fhir"> <id value="UKCore-ImagingStudy-CTChestScan-Example" /> <status value="available" /> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <started value="2023-01-24T09:01:20+00:00" /> <numberOfSeries value="1" /> <numberOfInstances value="1" /> <series> <uid value="2.16.124.113543.6003.2588828330.45298.17418.2723805630" /> <number value="3" /> <modality> <system value="http://dicom.nema.org/resources/ontology/DCM" /> <code value="CT" /> </modality> <description value="CT Surview 180" /> <numberOfInstances value="1" /> <bodySite> <system value="http://snomed.info/sct" /> <code value="67734004" /> <display value="Thoracic segment of trunk" /> </bodySite> <instance> <uid value="2.16.124.113543.6003.189642796.63084.16748.2599092903" /> <sopClass> <system value="urn:ietf:rfc:3986" /> <code value="urn:oid:1.2.840.10008.5.1.4.1.1.2" /> </sopClass> <number value="1" /> </instance> </series> </ImagingStudy>
JSON View
{ "resourceType": "ImagingStudy", "id": "UKCore-ImagingStudy-CTChestScan-Example", "status": "available", "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "started": "2023-01-24T09:01:20+00:00", "numberOfSeries": 1, "numberOfInstances": 1, "series": [ { "uid": "2.16.124.113543.6003.2588828330.45298.17418.2723805630", "number": 3, "modality": { "system": "http://dicom.nema.org/resources/ontology/DCM", "code": "CT" }, "description": "CT Surview 180", "numberOfInstances": 1, "bodySite": { "system": "http://snomed.info/sct", "code": "67734004", "display": "Thoracic segment of trunk" }, "instance": [ { "uid": "2.16.124.113543.6003.189642796.63084.16748.2599092903", "sopClass": { "system": "urn:ietf:rfc:3986", "code": "urn:oid:1.2.840.10008.5.1.4.1.1.2" }, "number": 1 } ] } ] }