@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://fhir.cognovis.de/praxis/Device/example-ai-device> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-ai-device"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Device example-ai-device</b></p><a name=\"example-ai-device\"> </a><a name=\"hcexample-ai-device\"> </a><p><b>manufacturer</b>: Cognovis GmbH</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>Praxis AI</td><td>User Friendly name</td></tr></table><p><b>type</b>: <span title=\"Codes:\">AI Decision Support System</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:manufacturer [ fhir:v "Cognovis GmbH"] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "Praxis AI" ] ;
     fhir:type [ fhir:v "user-friendly-name" ]
  ] ) ; # 
  fhir:type [
     fhir:text [ fhir:v "AI Decision Support System" ]
  ] . # 

# -------------------------------------------------------------------------------------

