This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Patient/infant-mom (Turtle)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
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:code [ fhir:v "M" ] ;
fhir:display [ fhir:v "Married" ]
] )
] ; #
fhir:generalPractitioner ( [
fhir:reference [ fhir:v "Practitioner/f202" ] ;
fhir:display [ fhir:v "Luigi Maas" ]
] )] . #
# -------------------------------------------------------------------------------------
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.