US Quality Core Implementation Guide
1.0.0-ballot - STU 1 - ballot United States of America flag

US Quality Core Implementation Guide, published by HL7 International / Clinical Quality Information. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-us-quality-core/ and changes regularly. See the Directory of published versions

: DiagnosticReportLab example

Page standards status: Informative

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 -------------------------------------------------------------------

<http://hl7.org/fhir/DiagnosticReport/example> a fhir:DiagnosticReport ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-diagnosticreport-lab" ;
       fhir:index -1 ;
       fhir:link <http://hl7.org/fhir/us/quality-core/StructureDefinition/us-quality-core-diagnosticreport-lab>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: DiagnosticReport example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-us-quality-core-diagnosticreport-lab.html\">US Quality Core DiagnosticReport Profile for Laboratory Results Reporting</a></p></div><h2><span title=\"Codes:{http://loinc.org 2339-0}\">Blood glucose</span> (<span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v2-0074 LAB}\">Laboratory</span>) </h2><table class=\"grid\"><tr><td>Subject</td><td>Example Patient  Male, DoB: 1974-12-25 ( Medical record number (use: usual, period: 2001-05-06 --&gt; (ongoing)))</td></tr><tr><td>Relevant Time</td><td>2026-08-05 08:00:00-0400</td></tr><tr><td>Reported</td><td>2026-08-05 09:15:00-0400</td></tr><tr><td>Performer</td><td> <a href=\"Organization-example-1.html\">Organization Example Hospital</a></td></tr></table><p><b>Report Details</b></p><table class=\"grid\"><tr><td><b>Code</b></td><td><b>Value</b></td><td><b>Reference Range</b></td><td><b>Flags</b></td></tr><tr><td><a href=\"Observation-laboratory-result-observation-example-blood-glucose.html\"><span title=\"Codes:{http://loinc.org 2339-0}\">Glucose Bld-mCnc</span></a></td><td>76 mg/dL</td><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/referencerange-meaning normal}\">Normal Range</span>: 40 mg/dL<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codemg/dL = 'mg/dL')</span> - 109 mg/dL<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codemg/dL = 'mg/dL')</span></td><td>Final, <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation N}\">Normal</span></td></tr></table></div>"
  ] ;
  fhir:DiagnosticReport.status [ fhir:value "final"] ;
  fhir:DiagnosticReport.category [
     fhir:index -1 ;
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0074" ] ;
       fhir:Coding.code [ fhir:value "LAB" ] ;
       fhir:Coding.display [ fhir:value "Laboratory" ]
     ]
  ] ;
  fhir:DiagnosticReport.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a loinc:2339-0 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "2339-0" ] ;
       fhir:Coding.display [ fhir:value "Glucose Bld-mCnc" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Blood glucose" ]
  ] ;
  fhir:DiagnosticReport.subject [
     fhir:link <http://hl7.org/fhir/Patient/example> ;
     fhir:Reference.reference [ fhir:value "Patient/example" ] ;
     fhir:Reference.display [ fhir:value "Example Patient" ]
  ] ;
  fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2026-08-05T08:00:00-04:00"^^xsd:dateTime] ;
  fhir:DiagnosticReport.issued [ fhir:value "2026-08-05T09:15:00-04:00"^^xsd:dateTime] ;
  fhir:DiagnosticReport.performer [
     fhir:index -1 ;
     fhir:link <http://hl7.org/fhir/Organization/example-1> ;
     fhir:Reference.reference [ fhir:value "Organization/example-1" ]
  ] ;
  fhir:DiagnosticReport.result [
     fhir:index -1 ;
     fhir:link <http://hl7.org/fhir/Observation/laboratory-result-observation-example-blood-glucose> ;
     fhir:Reference.reference [ fhir:value "Observation/laboratory-result-observation-example-blood-glucose" ] ;
     fhir:Reference.display [ fhir:value "Glucose Laboratory Result Observation" ]
  ] .

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

<http://hl7.org/fhir/Organization/example-1> a fhir:Organization .

<http://hl7.org/fhir/Observation/laboratory-result-observation-example-blood-glucose> a fhir:Observation .

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

<http://hl7.org/fhir/DiagnosticReport/example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/DiagnosticReport/example.ttl> .