@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.apps.health/Device/smartdocs-ai-scribe> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "smartdocs-ai-scribe"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-appdevice"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-appdevice>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>SmartDocs AI Scribe</b></p><p>AI-powered clinical documentation assistant. Client ID: smartdocs-ai-scribe-prod</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/polaris-appdevice-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "smartdocs-ai-scribe" ]
  ] [
     fhir:use [ fhir:v "secondary" ] ;
     fhir:system [ fhir:v "https://oauth.example.com/client-registry"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "smartdocs-ai-scribe-prod" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:manufacturer [ fhir:v "ClinicalAI Solutions"] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "SmartDocs AI Scribe" ] ;
     fhir:type [ fhir:v "user-friendly-name" ]
  ] ) ; # 
  fhir:type [
     fhir:text [ fhir:v "AI Clinical Documentation App" ]
  ] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "AI application for automated clinical note generation and transcription that integrates with patient data." ]
  ] ) . # 

# -------------------------------------------------------------------------------------

