FHIR CI-Build

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

Example Patient/f201 (Turtle)

Patient Administration Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient, Practitioner, RelatedPerson

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

Real-world patient example (anonymized)

@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

[a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "f201"] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ; #   The identifier for the person as this patient (fictive)  
     fhir:type [
       fhir:text [ fhir:v "BSN" ]
     ] ;
     fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.2.4.6.3"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "123456789" ]
  ] [
     fhir:use [ fhir:v "official" ] ; #   The identifier for this individual  
     fhir:type [
       fhir:text [ fhir:v "BSN" ]
     ] ;
     fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.2.4.6.3"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "123456789" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; #   Indicates that the patient is not part of a multiple birth   
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ; #   The name associated with the individual (fictive)  
     fhir:text [ fhir:v "Roel" ] ;
     fhir:family [ fhir:v "Bor" ] ;
     fhir:given ( [ fhir:v "Roelof Olaf" ] ) ;
     fhir:prefix ( [ fhir:v "Drs." ] ) ;
     fhir:suffix ( [ fhir:v "PDEng." ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ; #   The mobile contact detail for the individual  
     fhir:value [ fhir:v "+31612345678" ] ;
     fhir:use [ fhir:v "mobile" ]
  ] [
     fhir:system [ fhir:v "phone" ] ; #   The home contact detail for the individual  
     fhir:value [ fhir:v "+31201234567" ] ;
     fhir:use [ fhir:v "home" ]
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1960-03-13"^^xsd:date] ; # 
  fhir:deceased [ fhir:v "false"^^xsd:boolean] ; #   The date and time of birth for the individual   
  fhir:address ( [
     fhir:use [ fhir:v "home" ] ; #   Home address for the individual  
     fhir:line ( [ fhir:v "Bos en Lommerplein 280" ] ) ;
     fhir:city [ fhir:v "Amsterdam" ] ;
     fhir:postalCode [ fhir:v "1055RW" ] ;
     fhir:country [ fhir:v "NLD" ]
  ] ) ; #   Indicates that the individual is not deceased  ,   ISO 3166 3 letter code  
  fhir:maritalStatus [
     fhir:coding ( [
       a sct:36629006 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "36629006" ] ;
       fhir:display [ fhir:v "Legally married" ]
     ] [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "M" ]
     ] ) #   Marital status of the person  
  ] ; # 
  fhir:multipleBirth [ fhir:v "false"^^xsd:boolean] ; # 
  fhir:photo ( [
     fhir:contentType [ fhir:v "image/jpeg" ] ;
     fhir:url [ fhir:v "Binary/f006"^^xsd:anyURI ]
  ] ) ; # 
  fhir:contact ( [
     fhir:relationship ( [
       fhir:coding ( [
         a sct:127850001 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "127850001" ] ;
         fhir:display [ fhir:v "Wife" ]
       ] [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0131"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "N" ]
       ] [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "WIFE" ]
       ] ) #   Indicates that the contact is the patient's wife  
     ] ) ; #   Contact of the patient  
     fhir:name [
       fhir:use [ fhir:v "usual" ] ; #   The name of the contact  
       fhir:text [ fhir:v "Ariadne Bor-Jansma" ]
     ] ;
     fhir:telecom ( [
       fhir:system [ fhir:v "phone" ] ; #   The home contact detail  
       fhir:value [ fhir:v "+31201234567" ] ;
       fhir:use [ fhir:v "home" ]
     ] )
  ] ) ; # 
  fhir:communication ( [
     fhir:language [
       fhir:coding ( [
         fhir:system [ fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "nl-NL" ] ;
         fhir:display [ fhir:v "Dutch (Netherlands)" ]
       ] )
     ] ;
     fhir:preferred [ fhir:v "true"^^xsd:boolean ]
  ] ) ; # 
  fhir:managingOrganization [
     fhir:reference [ fhir:v "Organization/f201" ] ;
     fhir:display [ fhir:v "AUMC" ]
  ]] . # 

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


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.