HL7 FHIR Implementation Guide: Example IG Release 1 - US Realm | STU1
0.1.0 - STU1 International flag

HL7 FHIR Implementation Guide: Example IG Release 1 - US Realm | STU1, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/openhie/Training-Solution-1 and changes regularly. See the Directory of published versions

: PIXm Patient example - BirthDate Required - TTL Representation

Raw ttl | Download


@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 "PIXmPatientBirthDateRequiredExample"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://openhie.org/fhir/training-solution-1/StructureDefinition/pixm-patient-birthate-required"^^xsd:anyURI ;
fhir:link <http://openhie.org/fhir/training-solution-1/StructureDefinition/pixm-patient-birthate-required>     ] ) ;
    ( fhir:security [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActReason"^^xsd:anyURI ] ;
fhir:code [ fhir:v "HTEST" ]     ] )
  ] ; # 
  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>Jane Maria Smith (OFFICIAL)</b> female, DoB: 1990-12-12 ( Patient folder number: ORG1-0765712)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Other Ids (see the one above)\">Other Id:</td><td colspan=\"3\">id: NID1234567</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"tel:+27821234567\">+27821234567</a></li><li><a href=\"mailto:someone@example.com\">someone@example.com</a></li><li>99 Walmer Blvd Sunnydale Cape Town Western Province South Africa </li></ul></td></tr></table></div>"
  ] ; # 
  fhir:identifier ( [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "MR" ] ;
fhir:display [ fhir:v "Medical record number" ]       ] ) ;
fhir:text [ fhir:v "Patient folder number" ]     ] ;
fhir:system [ fhir:v "http://openhie.org/fhir/training-solution-1/identifier/mr"^^xsd:anyURI ] ;
fhir:value [ fhir:v "ORG1-0765712" ]
  ] [
fhir:system [ fhir:v "http://openhie.org/fhir/training-solution-1/identifier/nid"^^xsd:anyURI ] ;
fhir:value [ fhir:v "NID1234567" ]
  ] ) ; # 
  fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Smith" ] ;
    ( fhir:given [ fhir:v "Jane" ] [ fhir:v "Maria" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+27821234567" ]
  ] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "someone@example.com" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1990-12-12"^^xsd:date] ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "99" ] [ fhir:v "Walmer Blvd" ] [ fhir:v "Sunnydale" ] ) ;
fhir:city [ fhir:v "Cape Town" ] ;
fhir:district [ fhir:v "City of Cape Town" ] ;
fhir:state [ fhir:v "Western Province" ] ;
fhir:country [ fhir:v "South Africa" ]
  ] ) . #