@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://fhir.hl7.at/prenudge/appdata/r4/Device/device-wearable-example> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "device-wearable-example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://build.fhir.org/ig/HL7Austria/ELGA-AustrianPatientSummary-R4/StructureDefinition-at-aps-device.html" ;
       fhir:index 0 ;
       fhir:link <https://build.fhir.org/ig/HL7Austria/ELGA-AustrianPatientSummary-R4/StructureDefinition-at-aps-device.html>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Device device-wearable-example</b></p><a name=\"device-wearable-example\"> </a><a name=\"hcdevice-wearable-example\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <code>https://build.fhir.org/ig/HL7Austria/ELGA-AustrianPatientSummary-R4/StructureDefinition-at-aps-device.html</code></p></div><p><b>identifier</b>: <code>https://www.joanneum.at/devices</code>/dev-wearable-001</p><p><b>status</b>: Active</p><p><b>manufacturer</b>: PreNUDGE Demo Devices 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>PreNUDGE Fitness Tracker v1</td><td>Manufacturer name</td></tr></table><p><b>modelNumber</b>: PND-FT-001</p><p><b>patient</b>: <a href=\"Patient-example.html\">James Pond  Male, DoB: 1990-01-01 ( urn:oid:1.2.40.0.10.1.4.3.1#1234567890)</a></p></div>"
  ] ;
  fhir:Device.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "https://www.joanneum.at/devices" ] ;
     fhir:Identifier.value [ fhir:value "dev-wearable-001" ]
  ] ;
  fhir:Device.status [ fhir:value "active"] ;
  fhir:Device.manufacturer [ fhir:value "PreNUDGE Demo Devices GmbH"] ;
  fhir:Device.deviceName [
     fhir:index 0 ;
     fhir:Device.deviceName.name [ fhir:value "PreNUDGE Fitness Tracker v1" ] ;
     fhir:Device.deviceName.type [ fhir:value "manufacturer-name" ]
  ] ;
  fhir:Device.modelNumber [ fhir:value "PND-FT-001"] ;
  fhir:Device.patient [
     fhir:link <https://fhir.hl7.at/prenudge/appdata/r4/Patient/example> ;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://fhir.hl7.at/prenudge/appdata/r4/Device/device-wearable-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

