QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions
Formats: Narrative, XML, JSON, Turtle
Raw ttl
@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 ------------------------------------------------------------------- a fhir:DeviceRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <b> Generated Narrative with Details</b>\n </p>\n <p>\n <b> id</b> : example\n </p>\n <p>\n <b> status</b> : completed\n </p>\n <p>\n <b> intent</b> : original-order\n </p>\n <p>\n <b> code</b> : <a> Device/example</a>\n </p>\n <p>\n <b> subject</b> : <a> Patient/example</a>\n </p>\n </div>" ]; fhir:DeviceRequest.status [ fhir:value "completed"]; fhir:DeviceRequest.intent [ fhir:value "original-order"]; fhir:DeviceRequest.codeReference [ fhir:Reference.reference [ fhir:value "Device/example" ] ]; fhir:DeviceRequest.subject [ fhir:Reference.reference [ fhir:value "Patient/example" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.