Kenya Core Implementation Guide
1.0.0 - release Kenya flag

Kenya Core Implementation Guide, published by Digital Health Agency (DHA), Kenya. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/IntelliSOFT-Consulting/Kenya-core-FHIR-IG/ and changes regularly. See the Directory of published versions

: Example Device - Infusion Pump - TTL Representation

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Device/example-device-infusion-pump-01> a fhir:Device ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-device-infusion-pump-01"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.dha.go.ke/ig/core/StructureDefinition/kenya-core-device|1.0.0" ;
       fhir:index 0 ;
       fhir:link <https://fhir.dha.go.ke/ig/core/StructureDefinition/kenya-core-device|1.0.0>
     ]
  ] ;
  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 example-device-infusion-pump-01</b></p><a name=\"example-device-infusion-pump-01\"> </a><a name=\"hcexample-device-infusion-pump-01\"> </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: <a href=\"StructureDefinition-kenya-core-device.html\">Kenya Core Device Profile</a> version: 1.0.0</p></div><p><b>identifier</b>: Device Asset Identifier/KNH-ASSET-INFPUMP-014 (use: official, )</p><p><b>status</b>: Active</p><p><b>manufacturer</b>: B. Braun Melsungen AG</p><p><b>manufactureDate</b>: 2023-02-10</p><p><b>expirationDate</b>: 2033-02-10</p><p><b>lotNumber</b>: LOT-99231</p><p><b>serialNumber</b>: SN-INF-88213</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>Infusion Pump X200</td><td>User Friendly name</td></tr></table><p><b>modelNumber</b>: X200</p><p><b>type</b>: <span title=\"Codes:{http://snomed.info/sct 69784007}\">Infusion pump, device</span></p><p><b>patient</b>: <a href=\"Patient-CR2026080100001-1.html\">Amina Hassan Female, DoB: 1990-05-14 ( https://fhir.sha.go.ke/fhir/identifier/phonenumber#+254712345678 (use: official, ))</a></p><p><b>owner</b>: <a href=\"Organization-example-organization-knh.html\">Organization Kenyatta National Hospital</a></p></div>"
  ] ;
  fhir:Device.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.type [
       fhir:CodeableConcept.text [ fhir:value "Device Asset Identifier" ]
     ] ;
     fhir:Identifier.system [ fhir:value "https://fhir.sha.go.ke/fhir/identifier/device-asset-tag" ] ;
     fhir:Identifier.value [ fhir:value "KNH-ASSET-INFPUMP-014" ]
  ] ;
  fhir:Device.status [ fhir:value "active"] ;
  fhir:Device.manufacturer [ fhir:value "B. Braun Melsungen AG"] ;
  fhir:Device.manufactureDate [ fhir:value "2023-02-10"^^xsd:date] ;
  fhir:Device.expirationDate [ fhir:value "2033-02-10"^^xsd:date] ;
  fhir:Device.lotNumber [ fhir:value "LOT-99231"] ;
  fhir:Device.serialNumber [ fhir:value "SN-INF-88213"] ;
  fhir:Device.deviceName [
     fhir:index 0 ;
     fhir:Device.deviceName.name [ fhir:value "Infusion Pump X200" ] ;
     fhir:Device.deviceName.type [ fhir:value "user-friendly-name" ]
  ] ;
  fhir:Device.modelNumber [ fhir:value "X200"] ;
  fhir:Device.type [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:69784007 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "69784007" ] ;
       fhir:Coding.display [ fhir:value "Infusion pump, device" ]
     ]
  ] ;
  fhir:Device.patient [
     fhir:link <http://hl7.org/fhir/Patient/CR2026080100001-1> ;
     fhir:Reference.reference [ fhir:value "Patient/CR2026080100001-1" ]
  ] ;
  fhir:Device.owner [
     fhir:link <http://hl7.org/fhir/Organization/example-organization-knh> ;
     fhir:Reference.reference [ fhir:value "Organization/example-organization-knh" ]
  ] .

<http://hl7.org/fhir/Patient/CR2026080100001-1> a fhir:Patient .

<http://hl7.org/fhir/Organization/example-organization-knh> a fhir:Organization .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Device/example-device-infusion-pump-01.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Device/example-device-infusion-pump-01.ttl> .