@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://annotatemd.com/fhir/ig/Device/example-derm-ai-model> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-derm-ai-model"] ; # 
  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-derm-ai-model</b></p><a name=\"example-derm-ai-model\"> </a><a name=\"hcexample-derm-ai-model\"> </a><p><b>manufacturer</b>: Annotate MD</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>DermAI Classifier v2.1</td><td>Model name</td></tr></table><h3>Versions</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Value</b></td></tr><tr><td style=\"display: none\">*</td><td>2.1.0</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:manufacturer [ fhir:v "Annotate MD"] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "DermAI Classifier v2.1" ] ;
     fhir:type [ fhir:v "model-name" ]
  ] ) ; # 
  fhir:version ( [
     fhir:value [ fhir:v "2.1.0" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

