@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://resmed.com/fhir/core/Device/device-ACE-example> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "device-ACE-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://resmed.com/fhir/core/StructureDefinition/device-rmd-ace-engine"^^xsd:anyURI ;
       fhir:link <http://resmed.com/fhir/core/StructureDefinition/device-rmd-ace-engine>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Device</b><a name=\"device-ACE-example\"> </a></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 Device &quot;device-ACE-example&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-device-rmd-ace-engine.html\">ResMed ACE Rules Engine Software Profile</a></p></div><p><b>status</b>: active</p><p><b>manufacturer</b>: ResMed Corp.</p><h3>DeviceNames</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Name</b></td><td><b>Type</b></td></tr><tr><td style=\"display: none\">*</td><td>AirView Compliance Engine</td><td>manufacturer-name</td></tr></table><p><b>type</b>: Application programme software <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#706689003)</span></p><h3>Versions</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Type</b></td><td><b>Value</b></td></tr><tr><td style=\"display: none\">*</td><td>MDC_ID_PROD_SPEC_SW <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-mdc.html\">ISO 11073-10101 Health informatics - Point-of-care</a>#531975)</span></td><td>1.2.3</td></tr></table></div>"
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:manufacturer [ fhir:v "ResMed Corp."] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "AirView Compliance Engine" ] ;
     fhir:type [ fhir:v "manufacturer-name" ]
  ] ) ; # 
  fhir:type [
     fhir:coding ( [
       a sct:706689003 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "706689003" ]
     ] )
  ] ; # 
  fhir:version ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "urn:iso:std:iso:11073:10101"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "531975" ]
       ] )
     ] ;
     fhir:value [ fhir:v "1.2.3" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

