IE (Ireland) Core Implementation Guide
1.0.0-ballot - Ballot Ireland flag

Publication Build: This will be filled in by the publication tooling

: Patient Child Example - TTL Representation

Page standards status: Informative

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 "child-example"] ; # 
  fhir:meta [
    ( fhir:extension [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/instance-name"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Patient Child Example" ]     ] [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/instance-description"^^xsd:anyURI ] ;
fhir:value [ fhir:v "This is a patient child example for the *IE Core Patient Profile*." ]     ] ) ;
    ( fhir:profile [
fhir:v "http://iehr.ai/fhir/ie/core/StructureDefinition/ie-core-patient"^^xsd:anyURI ;
fhir:link <http://iehr.ai/fhir/ie/core/StructureDefinition/ie-core-patient>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient child-example</b></p><a name=\"child-example\"> </a><a name=\"hcchild-example\"> </a><a name=\"child-example-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Child Example  Male, DoB: 2016-01-15 ( Medical Record Number: 1032704 (use: usual, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 1 234 5678(Home)</li><li>49 MEADOW ST Sandyford Dublin D18 CV48 IE </li></ul></td></tr></table></div>"
  ] ; # 
  fhir:identifier ( [
fhir:use [ fhir:v "usual" ] ;
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 "Medical Record Number" ]     ] ;
fhir:system [ fhir:v "http://hospital.smarthealthit.org"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1032704" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:name ( [
fhir:family [ fhir:v "Example" ] ;
    ( fhir:given [ fhir:v "Child" ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "1 234 5678" ] ;
fhir:use [ fhir:v "home" ]
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "2016-01-15"^^xsd:date] ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "49 MEADOW ST" ] ) ;
fhir:city [ fhir:v "Sandyford" ] ;
fhir:state [ fhir:v "Dublin" ] ;
fhir:postalCode [ fhir:v "D18 CV48" ] ;
fhir:country [ fhir:v "IE" ]
  ] ) . #