Mona FHIR Implementation Guide
0.4.50648 - ci-build

Mona FHIR Implementation Guide - Local Development build (v0.4.50648). See the Directory of published versions

: WardExample - 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:Location;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "WardExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.mona.icu/StructureDefinition/mona-ward";
       fhir:index 0;
       fhir:link <https://fhir.mona.icu/StructureDefinition/mona-ward>     ]
  ];
  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>status</b>: active</p><p><b>name</b>: Ward A</p><p><b>alias</b>: Ward</p><p><b>physicalType</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type wa}\">Ward</span></p></div>"
  ];
  fhir:Location.status [ fhir:value "active"];
  fhir:Location.name [ fhir:value "Ward A"];
  fhir:Location.alias [
     fhir:value "Ward";
     fhir:index 0
  ];
  fhir:Location.physicalType [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/location-physical-type" ];
       fhir:Coding.code [ fhir:value "wa" ];
       fhir:Coding.display [ fhir:value "Ward" ]     ]
  ].

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

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