This page is part of the FHIR Specification (v5.0.0: R5 - STU). This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Example List/example-xds (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
XDS SubmissionSet example
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
#
# <related>
# <identifier>
# <system value="http://example.org/documents"/>
# <value value="23425234234-9999"/>
# </identifier>
# <ref>
# <reference value="DocumentReference/example"/>
# </ref>
# </related>
#
[a fhir:List ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example-xds"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>Physical</h2><table class=\"clstu\"><tr><td>Date: 26 Dec 2004, 3:50:50 pmMode: workingStatus: currentCode: History and Physical</td></tr><tr><td>Subject: <a href=\"patient-example-xcda.html\">Patient/xcda</a> "Henry LEVIN"Source: (null)</td></tr></table><table class=\"grid\"><tr style=\"backgound-color: #eeeeee\"><td><b>Items</b></td></tr><tr><td><a href=\"documentreference-example.html\">DocumentReference/example</a></td></tr></table></div>"
] ; # Many XDS systems do not track any id for the author. When systems don't do this,
# the only option is for the author information to be contained in the Document Reference
fhir:contained ( [
a fhir:Practitioner ;
fhir:id [ fhir:v "a1" ] ;
fhir:name ( [
fhir:family [ fhir:v "Dopplemeyer" ] ;
fhir:given ( [ fhir:v "Sherry" ] )
] ) ;
fhir:telecom ( [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "john.doe@healthcare.example.org" ]
] )
] ) ; #
fhir:identifier ( [
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://ihe.net/fhir/CodeSystem/identifier-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "master" ]
] )
] ; # master identifier
fhir:system [ fhir:v "http://example.org/documents"^^xsd:anyURI ] ;
fhir:value [ fhir:v "23425234234-2346" ]
] [
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://ihe.net/fhir/CodeSystem/identifier-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "set" ]
] )
] ; # set identifier
fhir:system [ fhir:v "http://example.org/documents"^^xsd:anyURI ] ;
fhir:value [ fhir:v "23425234234-2347" ]
] ) ; #
fhir:status [ fhir:v "current"] ; #
fhir:mode [ fhir:v "working"] ; #
fhir:title [ fhir:v "Physical"] ; #
fhir:code [
fhir:text [ fhir:v "History and Physical" ]
] ; #
fhir:subject ( [
fhir:reference [ fhir:v "Patient/xcda" ]
] ) ; #
fhir:date [ fhir:v "2004-12-25T23:50:50-05:00"^^xsd:dateTime] ; #
fhir:source [
fhir:reference [ fhir:v "#a1" ]
] ; #
fhir:entry ( [
fhir:item [
fhir:reference [ fhir:v "DocumentReference/example" ]
]
] )] . #
# <recipient>
# <reference value="Practitioner/xcda1"/>
# </recipient>
# <source value="urn:oid:1.3.6.1.4.1.21367.2009.1.2.1"/>
#
# -------------------------------------------------------------------------------------
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.