Miscellaneous FHIR Slides Prof. Steven A. Demurjian, Sr. Computer Science & Engineering Department The University of Connecticut 371 Fairfield Road, Box U-255 Storrs, CT 06269-2155 steve@engr.uconn.edu http://www.engr.uconn.edu/~steve (860) 486 - 4818
Primitive Types
Complex Types
Complex Types
Examples of ICD-10 & SNOMED
Addresses
Resources
Resources
Resources
Available Resources
Available Resources
Resources Conceptually
Resources Conceptually
Resources Conceptually
Resources Conceptually
Resources Conceptually
Representing Resources in Different Formats The resources are described in several different ways: a hierarchical table that presents a logical view of the content a UML diagram that summarizes the content graphically a pseudo-XML syntax that provides a visual sense of what the end resource instances will look like in XML a pseudo-JSON syntax that provides a visual sense of what the end resource instances will look like in JSON
XML vs. JSON
XML vs. JSON
XML vs. JSON
JSON vs. RDF { "resourceType" : "Observation", "code" : { "coding" : { "system" : [ fhir:uri.value "http://loinc.org"], "code" : [ fhir:code.value "54411-4"], "display" : [ fhir:string.value "Rh immune globulin given Qualitative"] }, "text" : "Rh immune globulin" } @prefix loinc: <http://loinc.org/owl#> . :resource a fhir:Observation; fhir:Observation.code [ a loinc:54411-4; fhir:CodeableConcept.coding [ fhir:Coding.system [ fhir:uri.value <http://loinc.org>] ; fhir:Coding.code [ fhir:code.value "54411-4" ]; fhir:Coding.display [ fhir:string.value "Rh immune globulin given Qualitative"]; ]; fhir:CodeableConcept.text [ fhir:string.value "Rh immune globulin" ]; ].