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:Parameters;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "MakeCoffee"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://fhir.org/guides/acme/HotBeverage/StructureDefinition/BrewedBeverage";
fhir:index 0;
fhir:link <http://fhir.org/guides/acme/HotBeverage/StructureDefinition/BrewedBeverage> ];
fhir:Meta.security [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActReason" ];
fhir:Coding.code [ fhir:value "HTEST" ] ], [
fhir:index 1;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-Confidentiality" ];
fhir:Coding.code [ fhir:value "L" ] ]
];
fhir:Parameters.parameter [
fhir:index 0;
fhir:Parameters.parameter.name [ fhir:value "beverageType" ];
fhir:Parameters.parameter.valueCode [ fhir:value "ESPRESSO" ]
], [
fhir:index 1;
fhir:Parameters.parameter.name [ fhir:value "drinkSize" ];
fhir:Parameters.parameter.valueCode [ fhir:value "PROG" ]
], [
fhir:index 2;
fhir:Parameters.parameter.name [ fhir:value "device" ];
fhir:Parameters.parameter.valueReference [
fhir:Reference.reference [ fhir:value "Device/VertuoNext" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.