@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/wellness-tracker-pro> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "wellness-tracker-pro"] ; # 
  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>WellnessTracker Pro</b></p><p>Comprehensive wellness monitoring and lifestyle coaching app. Client ID: wellness-tracker-prod-v2</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/polaris-appdevice-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "wellness-tracker-pro" ]
  ] [
     fhir:use [ fhir:v "secondary" ] ;
     fhir:system [ fhir:v "https://oauth.example.com/client-registry"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "wellness-tracker-prod-v2" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:manufacturer [ fhir:v "HealthTech Innovations Inc"] ; # 
  fhir:deviceName ( [
     fhir:name [ fhir:v "WellnessTracker Pro" ] ;
     fhir:type [ fhir:v "user-friendly-name" ]
  ] ) ; # 
  fhir:type [
     fhir:text [ fhir:v "Personal Health Monitoring App" ]
  ] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "Personal wellness application that tracks vitals, medications, and lifestyle factors to provide coaching recommendations." ]
  ] ) . # 

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

