Intelisoft FHIR TRAINING IG
0.1.0 - ci-build

Intelisoft FHIR TRAINING IG - Local Development build (v0.1.0). See the Directory of published versions

: Example fhir-training Patient - 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 "329f09da-0fc9-419d-9575-ace68954426A"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://intellisoft-consulting.github.io/FHIR-training-ig-template/StructureDefinition/fhir-training-patient";
       fhir:index 0;
       fhir:link <https://intellisoft-consulting.github.io/FHIR-training-ig-template/StructureDefinition/fhir-training-patient>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>moses Mutesa </b> female, DoB: 1988-03-02 ( id: NA121212)</p></div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http/fhir-trining/patient" ];
     fhir:Identifier.value [ fhir:value "NA121212" ]
  ];
  fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Mutesa" ];
     fhir:HumanName.given [
       fhir:value "moses";
       fhir:index 0     ]
  ];
  fhir:Patient.gender [ fhir:value "female"];
  fhir:Patient.birthDate [ fhir:value "1988-03-02"^^xsd:date].

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

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