EMR-LIS Implementation Guide
0.2.0 - ci-build

EMR-LIS Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions

: EMR-LIS Practitioner - 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:Practitioner;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-emr-lis-practitioner"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://i-tech-uw.github.io/emr-lis-ig/StructureDefinition/emr-lab-practitioner";
       fhir:index 0;
       fhir:link <http://i-tech-uw.github.io/emr-lis-ig/StructureDefinition/emr-lab-practitioner>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>identifier</b>: id: 1000AX</p><p><b>name</b>: Moses Mutesa</p></div>"
  ];
  fhir:Practitioner.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "http://fhir.openmrs.org/ext/provider/identifier" ];
     fhir:Identifier.value [ fhir:value "1000AX" ]
  ];
  fhir:Practitioner.name [
     fhir:index 0;
     fhir:HumanName.text [ fhir:value "Moses Mutesa" ]
  ].

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

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