This page is part of the FHIR Specification (v0.4.0: DSTU 2 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
Example Index:
Example of imagingstudy | XML | JSON |
XML
Example of imagingstudy (id = "example")
<ImagingStudy xmlns="http://hl7.org/fhir"> <id value="example"/> <text> <status value="generated"/> <div xmlns="http://www.w3.org/1999/xhtml"><!-- Snipped for brevity --></div> </text> <started value="2011-01-01T11:01:20+03:00"/> <patient> <reference value="Patient/dicom"/> </patient> <uid value="urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045"/> <numberOfSeries value="1"/> <numberOfInstances value="1"/> <series> <number value="3"/> <modality value="CT"/> <uid value="urn:oid:2.16.124.113543.6003.2588828330.45298.17418.2723805630"/> <description value="CT Surview 180"/> <numberOfInstances value="1"/> <bodySite><!-- Added body site to support duplicate checking example --> <system value="http://snomed.info/sct"/> <code value="67734004"/> <display value="Upper Trunk Structure"/> </bodySite> <instance> <number value="1"/> <uid value="urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092903"/> <sopclass value="urn:oid:1.2.840.10008.5.1.4.1.1.2"/> <url value="http://localhost/fhir/Binary/1.2.840.11361907579238403408700.3.0.14.19970327150033"/> </instance> </series> </ImagingStudy>
JSON
Example of imagingstudy
{ "resourceType": "ImagingStudy", "id": "example", "text": { "status": "generated", "div": "<div>!-- Snipped for Brevity --></div>" }, "started": "2011-01-01T11:01:20+03:00", "patient": { "reference": "Patient/dicom" }, "uid": "urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045", "numberOfSeries": 1, "numberOfInstances": 1, "series": [ { "number": 3, "modality": "CT", "uid": "urn:oid:2.16.124.113543.6003.2588828330.45298.17418.2723805630", "description": "CT Surview 180", "numberOfInstances": 1, "bodySite": { "system": "http://snomed.info/sct", "code": "67734004", "display": "Upper Trunk Structure" }, "instance": [ { "number": 1, "uid": "urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092903", "sopclass": "urn:oid:1.2.840.10008.5.1.4.1.1.2", "url": "http://localhost/fhir/Binary/1.2.840.11361907579238403408700.3.0.14.19970327150033" } ] } ] }
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.