HotBeverage FHIR Implementation Guide
1.4.2022 - release
This page is part of the HotBeverage FHIR Implementation Guide (v1.4.2022: Release) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
@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:Device;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "VertuoNext"];
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><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"VertuoNext\" </p></div><p><b>status</b>: active</p><p><b>manufacturer</b>: nespresso</p><h3>DeviceNames</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>Vertuo Next</td><td>manufacturer-name</td></tr></table><p><b>modelNumber</b>: B084GYKJ58</p><p><b>location</b>: <span>: coffee room</span></p><p><b>url</b>: <a href=\"http://server.example.com/fhir/coffee\">http://server.example.com/fhir/coffee</a></p></div>"
];
fhir:Device.status [ fhir:value "active"];
fhir:Device.manufacturer [ fhir:value "nespresso"];
fhir:Device.deviceName [
fhir:index 0;
fhir:Device.deviceName.name [ fhir:value "Vertuo Next" ];
fhir:Device.deviceName.type [ fhir:value "manufacturer-name" ]
];
fhir:Device.modelNumber [ fhir:value "B084GYKJ58"];
fhir:Device.location [
fhir:Reference.display [ fhir:value "coffee room" ]
];
fhir:Device.url [ fhir:value "http://server.example.com/fhir/coffee"].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.