This page is part of the Quality Improvement Core Framework (v2.1.0: STU 3 Ballot 1) based on FHIR R3. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions
@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 ------------------------------------------------------------------- a fhir:Device; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "qicore-device-example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <strong>id</strong>: example\n </p>\n <p>\n <strong>identifier</strong>: 345675, Serial Number = AMID-342135-8464\n </p>\n <p>\n <strong>status</strong>: active\n </p>\n <p>\n <strong>type</strong>: ECG { SNOMED CT code '86184003' = 'Electrocardiographic monitor and recorder' })\n </p>\n <p>\n <strong>lotNumber</strong>: 43453424\n </p>\n <p>\n <strong>manufacturer</strong>: Acme Devices, Inc\n </p>\n <p>\n <strong>model</strong>: AB 45-J\n </p>\n <p>\n <strong>contact</strong>: phone ext 4352\n </p>\n <blockquote>\n <p><strong>note</strong></p>\n <p>\n <strong>authorReference</strong>: \n <a href=\"Practitioner-qicore-practitioner-example.html\">Practitioner/example</a>\n </p>\n <p>\n <strong>time</strong>: 06/28/2015\n </p>\n <p>\n <strong>text</strong>: QA Checked\n </p>\n </blockquote>\n </div>" ]; fhir:Device.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://goodcare.org/devices/id" ]; fhir:Identifier.value [ fhir:value "345675" ] ], [ fhir:index 1; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/identifier-type" ]; fhir:Coding.code [ fhir:value "SNO" ] ]; fhir:CodeableConcept.text [ fhir:value "Serial Number" ] ]; fhir:Identifier.value [ fhir:value "AMID-342135-8464" ] ]; fhir:Device.status [ fhir:value "active"]; fhir:Device.type [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:86184003; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "86184003" ]; fhir:Coding.display [ fhir:value "Electrocardiographic monitor and recorder" ] ]; fhir:CodeableConcept.text [ fhir:value "ECG" ] ]; fhir:Device.lotNumber [ fhir:value "43453424"]; fhir:Device.manufacturer [ fhir:value "Acme Devices, Inc"]; fhir:Device.model [ fhir:value "AB 45-J"]; fhir:Device.contact [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "ext 4352" ] ]; fhir:Device.note [ fhir:index 0; fhir:Annotation.authorReference [ fhir:Reference.reference [ fhir:value "Practitioner/qicore-practitioner-example" ] ]; fhir:Annotation.time [ fhir:value "2015-06-28T14:03:32+10:00"^^xsd:dateTime ]; fhir:Annotation.text [ fhir:value "QA Checked" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.