台北榮民總醫院-治療計畫書實作指引(VGH-IG)
0.1.0 - ci-build

台北榮民總醫院-治療計畫書實作指引(VGH-IG) - Local Development build (v0.1.0). See the Directory of published versions

: PatientExample - 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:Resource.id [ fhir:value "PatientExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/StructureDefinition/patient-profile";
       fhir:index 0;
       fhir:link <http://example.org/StructureDefinition/patient-profile>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>John B. Anyperson </b> male, DoB: 1951-01-20</p></div>"
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Anyperson" ];
     fhir:HumanName.given [
       fhir:value "John";
       fhir:index 0     ], [
       fhir:value "B.";
       fhir:index 1     ]
  ];
  fhir:Patient.gender [ fhir:value "male"];
  fhir:Patient.birthDate [ fhir:value "1951-01-20"^^xsd:date];
  fhir:Patient.contact [
     fhir:index 0;
     fhir:Patient.contact.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "phone" ];
       fhir:ContactPoint.value [ fhir:value "555-555-5555" ];
       fhir:ContactPoint.use [ fhir:value "home" ]     ], [
       fhir:index 1;
       fhir:ContactPoint.system [ fhir:value "email" ];
       fhir:ContactPoint.value [ fhir:value "john.anyperson@example.com" ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.