Transcript PPTX

Miscellaneous FHIR Slides
CSE
5810
Prof. Steven A. Demurjian, Sr.
Computer Science & Engineering Department
The University of Connecticut
371 Fairfield Road, Box U-255
Storrs, CT 06269-2155
[email protected]
http://www.engr.uconn.edu/~steve
(860) 486 - 4818
intrto-1
CSE
5810
intrto-2
Primitive Types
CSE
5810
intrto-3
Complex Types
CSE
5810
intrto-4
Complex Types
CSE
5810
intrto-5
Examples of ICD-10 & SNOMED
CSE
5810
intrto-6
Addresses
CSE
5810
intrto-7
Resources
CSE
5810
intrto-8
Resources
CSE
5810
intrto-9
Resources
CSE
5810
intrto-10
Available Resources
CSE
5810
intrto-11
Available Resources
CSE
5810
intrto-12
Resources Conceptually
CSE
5810
intrto-13
Resources Conceptually
CSE
5810
intrto-14
Resources Conceptually
CSE
5810
intrto-15
Resources Conceptually
CSE
5810
intrto-16
Resources Conceptually
CSE
5810
intrto-17
Representing Resources in Different Formats

CSE
5810
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
intrto-18
XML vs. JSON
CSE
5810
intrto-19
XML vs. JSON
CSE
5810
intrto-20
XML vs. JSON
CSE
5810
intrto-21
JSON vs. RDF
CSE
5810
{
"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" ];
].
intrto-22