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

ImmunizationEvaluation/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:ImmunizationEvaluation;
  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-immunizationevaluation";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-immunizationevaluation>     ]
  ];
  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>identifier</b>: urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234</p><p><b>status</b>: completed</p><p><b>patient</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>date</b>: Jan 10, 2013 12:00:00 AM</p><p><b>authority</b>: <a href=\"Organization-example.html\">Generated Summary: id: example; ??; active; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/organization-type team}\">Organizational team</span>; name: Health Level Seven International; ph: (+1) 734-677-7777, fax: (+1) 734-677-6622, hq@HL7.org</a></p><p><b>targetDisease</b>: Gestational rubella syndrome <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '1857005' = 'Gestational rubella syndrome)</span></p><p><b>immunizationEvent</b>: <a href=\"Immunization-example.html\">Generated Summary: id: example; urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234; status: completed; <span title=\"Codes: {urn:oid:1.2.36.1.2001.1005.17 FLUVAX}\">Fluvax (Influenza)</span>; occurrence: Jan 1, 2013 12:00:00 AM; recorded: Jan 10, 2013 12:00:00 AM; primarySource; lotNumber: AAJN11K; expirationDate: 2015-02-15; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-ActSite LA}\">left arm</span>; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration IM}\">Injection, intramuscular</span>; 5 mg; Annotation: Notes on adminstration of vaccine; <span title=\"Codes: {http://snomed.info/sct 429060002}\">Procedure to meet occupational requirement</span></a></p><p><b>doseStatus</b>: Valid <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status code 'valid' = 'Valid', given as 'Valid'})</span></p><p><b>series</b>: Vaccination Series 1</p><p><b>doseNumber</b>: 1</p><p><b>seriesDoses</b>: 3</p></div>"
  ];
  fhir:ImmunizationEvaluation.identifier [
     fhir:index 0;
     fhir:Identifier.system [ fhir:value "urn:ietf:rfc:3986" ];
     fhir:Identifier.value [ fhir:value "urn:oid:1.3.6.1.4.1.21367.2005.3.7.1234" ]
  ];
  fhir:ImmunizationEvaluation.status [ fhir:value "completed"];
  fhir:ImmunizationEvaluation.patient [
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:ImmunizationEvaluation.date [ fhir:value "2013-01-10"^^xsd:date];
  fhir:ImmunizationEvaluation.authority [
     fhir:Reference.reference [ fhir:value "Organization/example" ]
  ];
  fhir:ImmunizationEvaluation.targetDisease [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:1857005;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "1857005" ]     ]
  ];
  fhir:ImmunizationEvaluation.immunizationEvent [
     fhir:Reference.reference [ fhir:value "Immunization/example" ]
  ];
  fhir:ImmunizationEvaluation.doseStatus [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/immunization-evaluation-dose-status" ];
       fhir:Coding.code [ fhir:value "valid" ];
       fhir:Coding.display [ fhir:value "Valid" ]     ]
  ];
  fhir:ImmunizationEvaluation.series [ fhir:value "Vaccination Series 1"];
  fhir:ImmunizationEvaluation.doseNumberPositiveInt [ fhir:value "1"^^xsd:positiveInteger];
  fhir:ImmunizationEvaluation.seriesDosesPositiveInt [ fhir:value "3"^^xsd:positiveInteger].

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

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