QI-Core Implementation Guide: STU 4 (v4.0.0 for FHIR 4.0.1)

QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions

ServiceRequest/example

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

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

 a fhir:ServiceRequest;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-servicerequest";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-servicerequest>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>status</b>: completed</p><p><b>intent</b>: order</p><p><b>priority</b>: urgent</p><p><b>code</b>: Excision of appendix (procedure) <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '80146002' = 'Appendectomy', given as 'Excision of appendix (procedure)'})</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>encounter</b>: <a href=\"Encounter-example.html\">Generated Summary: id: example; status: in-progress; <span title=\"{http://terminology.hl7.org/CodeSystem/v3-ActCode IMP}\">inpatient encounter</span>; <span title=\"Codes: {http://www.ama-assn.org/go/cpt 99223}\">Inpatient Hospital Care</span></a></p><p><b>occurrence</b>: Apr 5, 2013 12:00:00 AM</p><p><b>asNeeded</b>: true</p><p><b>authoredOn</b>: Apr 4, 2013 12:00:00 AM</p><p><b>reasonCode</b>: On examination - abdominal pain - right iliac <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '163220003' = 'On examination - abdominal pain - right iliac (finding)', given as 'On examination - abdominal pain - right iliac'})</span></p><p><b>bodySite</b>: Appendix structure <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '66754008' = 'Appendix', given as 'Appendix structure'})</span></p></div>"
  ];
  fhir:ServiceRequest.status [ fhir:value "completed"];
  fhir:ServiceRequest.intent [ fhir:value "order"];
  fhir:ServiceRequest.priority [ fhir:value "urgent"];
  fhir:ServiceRequest.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:80146002;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "80146002" ];
       fhir:Coding.display [ fhir:value "Excision of appendix (procedure)" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Excision of appendix (procedure)" ]
  ];
  fhir:ServiceRequest.subject [
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:ServiceRequest.encounter [
     fhir:Reference.reference [ fhir:value "Encounter/example" ]
  ];
  fhir:ServiceRequest.occurrenceDateTime [ fhir:value "2013-04-05"^^xsd:date];
  fhir:ServiceRequest.asNeededBoolean [ fhir:value "true"^^xsd:boolean];
  fhir:ServiceRequest.authoredOn [ fhir:value "2013-04-04"^^xsd:date];
  fhir:ServiceRequest.reasonCode [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:163220003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "163220003" ];
       fhir:Coding.display [ fhir:value "On examination - abdominal pain - right iliac" ]     ]
  ];
  fhir:ServiceRequest.bodySite [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:66754008;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "66754008" ];
       fhir:Coding.display [ fhir:value "Appendix structure" ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.