US Core Implementation Guide
4.0.0 - STU4 Release

This page is part of the US Core (v4.0.0: STU4) based on FHIR R4. The current version which supercedes this version is 5.0.1. For a full list of available versions, see the Directory of published versions

: DiagnosticReport Cardiology Report Example - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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:DiagnosticReport;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "cardiology-report"];
  fhir:Resource.meta [
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
       fhir:Extension.valueString [ fhir:value "DiagnosticReport Cardiology Report Example" ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
       fhir:Extension.valueMarkdown [ fhir:value "This is a DiagnosticReport cardiology report example for the *US Core DiagnosticReport Note Profile*." ]     ];
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2><span title=\"Codes: {http://loinc.org 45033-8}\">Cardiovascular physiologic and EKG assessment panel</span> (<span title=\"Codes: {http://loinc.org LP29708-2}\">Cardiology</span>) </h2><table class=\"grid\"><tr><td>Subject</td><td><b>Amy V. Shaw </b>  1987-02-20 ( Medical Record Number: 1032702 (USUAL))</td></tr><tr><td>When For</td><td>Jan 1, 2011 9:39:30 PM</td></tr></table><p><b>Report Details</b></p></div>"
  ];
  fhir:DiagnosticReport.status [ fhir:value "final"];
  fhir:DiagnosticReport.category [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:LP29708-2;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "LP29708-2" ];
       fhir:Coding.display [ fhir:value "Cardiology" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Cardiology" ]
  ];
  fhir:DiagnosticReport.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:45033-8;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "45033-8" ];
       fhir:Coding.display [ fhir:value "Cardiovascular physiologic and EKG assessment panel" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Cardiovascular physiologic and EKG assessment panel" ]
  ];
  fhir:DiagnosticReport.subject [
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2011-01-01T21:39:30.000Z"^^xsd:dateTime];
  fhir:DiagnosticReport.presentedForm [
     fhir:index 0;
     fhir:Attachment.contentType [ fhir:value "application/pdf" ];
     fhir:Attachment.url [ fhir:value "http://example.org/pdfdownloads/cardiopanel-report-123.pdf" ];
     fhir:Attachment.hash [ fhir:value "RVFILy4uQWdNRQo="^^xsd:base64Binary ]
  ].

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

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