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

: BedExample - 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 "BedExample"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.mona.icu/StructureDefinition/mona-bed";
       fhir:index 0;
       fhir:link <https://fhir.mona.icu/StructureDefinition/mona-bed>     ]
  ];
  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>: Bed 1</p><p><b>alias</b>: Bed</p><p><b>physicalType</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type bd}\">Bed</span></p><p><b>partOf</b>: <a href=\"Location-WardExample.html\">Generated Summary: status: active; name: Ward A; alias: Ward; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type wa}\">Ward</span></a></p></div>"
  ];
  fhir:Location.status [ fhir:value "active"];
  fhir:Location.name [ fhir:value "Bed 1"];
  fhir:Location.alias [
     fhir:value "Bed";
     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 "bd" ];
       fhir:Coding.display [ fhir:value "Bed" ]     ]
  ];
  fhir:Location.partOf [
     fhir:Reference.reference [ fhir:value "Location/WardExample" ]
  ].

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

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