FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example List/example-xds (Turtle)

FHIR Infrastructure Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Patient, Practitioner

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 -------------------------------------------------------------------

#  
#source data from http://wiki.ihe.net/index.php?title=Annotated_ProvideAndRegister.b_Transaction.
# 
#  
#	<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: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.