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

Example Patient/infant-mom (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 )

Mother of infant twins and fetal infant.

@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/infant-mom> a fhir:Patient ;

  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "infant-mom"] ; #    mother of infant twins and fetal patient   
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Leia Solo (OFFICIAL)</b> female, DoB: 1995-10-12</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Alternate names (see the one above)\">Alt. Name:</td><td colspan=\"3\">Leia Organa (MAIDEN)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>General Practitioner: <a href=\"practitioner-example-f202-lm.html\">Practitioner/f202: Luigi Maas</a> &quot;Luigi Maas&quot;</li></ul></td></tr></table></div>"
  ] ; # 

  fhir:id [ fhir:v "infant-mom"] ; #   mother of infant twins and fetal patient  

  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Solo" ] ;
     fhir:given ( [ fhir:v "Leia" ] )
  ] [
     fhir:use [ fhir:v "maiden" ] ;
     fhir:family [ fhir:v "Organa" ] ;
     fhir:given ( [ fhir:v "Leia" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1995-10-12"^^xsd:date] ; # 
  fhir:maritalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ] ;

       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-MaritalStatus>
       ] ;

       fhir:code [ fhir:v "M" ] ;
       fhir:display [ fhir:v "Married" ]
     ] )
  ] ; # 
  fhir:generalPractitioner ( [
     fhir:l <http://hl7.org/fhir/Practitioner/f202> ;

     fhir:reference [ fhir:v "Practitioner/f202" ] ;
     fhir:display [ fhir:v "Luigi Maas" ]
  ] )] . # 

  ] ) . # 

<http://hl7.org/fhir/Practitioner/f202> a fhir:Practitioner .


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


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.