@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/diabetes-research-portal> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "diabetes-research-portal"] ; # 
  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>Alberta Diabetes Research Portal</b></p><p>Clinical research platform for diabetes management studies. Client ID: diabetes-research-portal-2025</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/polaris-appdevice-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "diabetes-research-portal" ]
  ] [
     fhir:use [ fhir:v "secondary" ] ;
     fhir:system [ fhir:v "https://oauth.example.com/client-registry"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "diabetes-research-portal-2025" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:manufacturer [ fhir:v "University of Alberta - Faculty of Medicine"] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "Alberta Diabetes Research Portal" ] ;
     fhir:type [ fhir:v "user-friendly-name" ]
  ] ) ; # 
  fhir:type [
     fhir:text [ fhir:v "Clinical Research Data Platform" ]
  ] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "Research platform for collecting anonymized diabetes patient data for clinical studies approved by the University of Alberta REB." ]
  ] ) . # 

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

