Release 5 FHIR CI-Build

This page is part of the Continuous Integration Build of FHIR Specification (v5.0.0: R5 - STU ). This is the current published version in it's permanent home (it will always (will be available incorrect/inconsistent at this URL). For a full list of available versions, see times).
See the Directory of published versions . Page versions: R5 R4B R4 R3

Example Patient/dicom (Turtle)

Maturity Level : N/A
Responsible Owner: Patient Administration Work Group Standards Status : Informative Compartments : Patient , Practitioner , RelatedPerson

Raw Turtle (+ also see Turtle/RDF Format Specification )

Taken from a DICOM sample

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

[a fhir:Patient ;

<http://hl7.org/fhir/Patient/dicom> a fhir:Patient ;

  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "dicom"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"> Patient MINT_TEST, ID = MINT1234. Age = 56y, Size =\n      1.83m, Weight = 72.58kg </div>"

     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"> Patient MINT_TEST, ID = MINT1234. Age = 56y, Size =\n      1.83m, Weight = 72.58kg </div>"^^rdf:XMLLiteral ]

  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://nema.org/fhir/extensions#0010:1010"^^xsd:anyURI ] ;

     fhir:url [
       fhir:v "http://nema.org/fhir/extensions#0010:1010"^^xsd:anyURI ;
       fhir:l <http://nema.org/fhir/extensions#0010:1010>
     ] ;

     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "56"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "Y" ]
     ]
  ] [
     fhir:url [ fhir:v "http://nema.org/fhir/extensions#0010:1020"^^xsd:anyURI ] ;

     fhir:url [
       fhir:v "http://nema.org/fhir/extensions#0010:1020"^^xsd:anyURI ;
       fhir:l <http://nema.org/fhir/extensions#0010:1020>
     ] ;

     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "1.83"^^xsd:decimal ] ;

       fhir:value [ fhir:v 1.83 ] ;

       fhir:unit [ fhir:v "m" ]
     ]
  ] [
     fhir:url [ fhir:v "http://nema.org/fhir/extensions#0010:1030"^^xsd:anyURI ] ;

     fhir:url [
       fhir:v "http://nema.org/fhir/extensions#0010:1030"^^xsd:anyURI ;
       fhir:l <http://nema.org/fhir/extensions#0010:1030>
     ] ;

     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "72.58"^^xsd:decimal ] ;

       fhir:value [ fhir:v 72.58 ] ;

       fhir:unit [ fhir:v "kg" ]
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://nema.org/examples/patients"^^xsd:anyURI ] ;

     fhir:system [
       fhir:v "http://nema.org/examples/patients"^^xsd:anyURI ;
       fhir:l <http://nema.org/examples/patients>
     ] ;

     fhir:value [ fhir:v "MINT1234" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 

  fhir:active [ fhir:v true] ; # 

  fhir:name ( [
     fhir:family [ fhir:v "MINT_TEST" ]
  ] ) ; # 
  fhir:gender [
     fhir:v "male" ;
     fhir:extension ( [
       fhir:url [ fhir:v "http://nema.org/examples/extensions#gender"^^xsd:anyURI ] ;

       fhir:url [
         fhir:v "http://nema.org/examples/extensions#gender"^^xsd:anyURI ;
         fhir:l <http://nema.org/examples/extensions#gender>
       ] ;

       fhir:value [
         a fhir:Coding ;
         fhir:system [ fhir:v "http://nema.org/examples/gender"^^xsd:anyURI ] ;

         fhir:system [
           fhir:v "http://nema.org/examples/gender"^^xsd:anyURI ;
           fhir:l <http://nema.org/examples/gender>
         ] ;

         fhir:code [ fhir:v "M" ]
       ]
     ] )
  ] ; # 
  fhir:managingOrganization [
     fhir:l <http://hl7.org/fhir/Organization/1> ;

     fhir:reference [ fhir:v "Organization/1" ]
  ]] . # 

  ] . # 

<http://hl7.org/fhir/Organization/1> a fhir:Organization .


# -------------------------------------------------------------------------------------


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.