Release 4B

This page is part of the FHIR Specification (v4.3.0: R4B - STU). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B

Measurereport-general-example.ttl

Clinical Quality Information Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example MeasureReport for a single patient

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

<http://hl7.org/fhir/MeasureReport/general-example-of-report> a fhir:MeasureReport;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "general-example-of-report"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><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\">Resource &quot;general-example-of-report&quot; </p></div><p><b>status</b>: complete</p><p><b>type</b>: individual</p><p><b>measure</b>: <a href=\"http://ohie.org/Measure/hiv-indicators\">http://ohie.org/Measure/hiv-indicators</a></p><p><b>subject</b>: <a name=\"patient-new\"> </a></p><blockquote><p><b>Duck Donald (OFFICIAL)</b> male, DoB: 1976-05-17</p></blockquote><p><b>period</b>: 2018-01-01 --&gt; 2018-12-31</p><blockquote><p><b>group</b></p><p><b>code</b>: QRPH_ADX_ART5_N <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#QRPH_ADX_ART5_N)</span></p><p><b>measureScore</b>: 1</p><blockquote><p><b>stratifier</b></p><p><b>code</b>: AGE_GROUP:SEX <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#AGE_GROUP:SEX)</span></p><blockquote><p><b>stratum</b></p><p><b>value</b>: P0Y--P20Y:F <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P0Y--P20Y:F)</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: P0Y--P20Y:M <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P0Y--P20Y:M)</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: P20Y--P40Y:F <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P20Y--P40Y:F)</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: P20Y--P40Y:M <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P20Y--P40Y:M)</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: P40Y--P65Y:F <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P40Y--P65Y:F)</span></p><p><b>measureScore</b>: 0</p></blockquote><blockquote><p><b>stratum</b></p><p><b>value</b>: P40Y--P65Y:M <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#P40Y--P65Y:M)</span></p><p><b>measureScore</b>: 1</p></blockquote></blockquote></blockquote></div>"
  ];
  fhir:DomainResource.contained [
     a fhir:Patient;
     fhir:index 0;
     fhir:Resource.id [ fhir:value "patient-new" ];
     fhir:Patient.name [
       fhir:index 0;
       fhir:HumanName.use [ fhir:value "official" ];
       fhir:HumanName.family [ fhir:value "Donald" ];
       fhir:HumanName.given [
         fhir:value "Duck";
         fhir:index 0
       ]
     ];
     fhir:Patient.gender [ fhir:value "male" ];
     fhir:Patient.birthDate [ fhir:value "1976-05-17"^^xsd:date ];
     fhir:Patient.address [
       fhir:index 0;
       fhir:Address.use [ fhir:value "home" ];
       fhir:Address.line [
         fhir:value "1234 Main Street";
         fhir:index 0
       ];
       fhir:Address.city [ fhir:value "DC" ];
       fhir:Address.postalCode [ fhir:value "20001" ];
       fhir:Address.country [ fhir:value "USA" ]
     ]
  ];
  fhir:MeasureReport.status [ fhir:value "complete"];
  fhir:MeasureReport.type [ fhir:value "individual"];
  fhir:MeasureReport.measure [
     fhir:value "http://ohie.org/Measure/hiv-indicators";
     fhir:link <http://ohie.org/Measure/hiv-indicators>
  ];
  fhir:MeasureReport.subject [
     fhir:Reference.reference [ fhir:value "#patient-new" ]
  ];
  fhir:MeasureReport.period [
     fhir:Period.start [ fhir:value "2018-01-01"^^xsd:date ];
     fhir:Period.end [ fhir:value "2018-12-31"^^xsd:date ]
  ];
  fhir:MeasureReport.group [
     fhir:index 0;
     fhir:MeasureReport.group.code [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.code [ fhir:value "QRPH_ADX_ART5_N" ]
       ]
     ];
     fhir:MeasureReport.group.measureScore [
       fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ]
     ];
     fhir:MeasureReport.group.stratifier [
       fhir:index 0;
       fhir:MeasureReport.group.stratifier.code [
         fhir:index 0;
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.code [ fhir:value "AGE_GROUP:SEX" ]
         ]
       ];
       fhir:MeasureReport.group.stratifier.stratum [
         fhir:index 0;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P0Y--P20Y:F" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "0"^^xsd:decimal ]
         ]
       ], [
         fhir:index 1;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P0Y--P20Y:M" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "0"^^xsd:decimal ]
         ]
       ], [
         fhir:index 2;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P20Y--P40Y:F" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "0"^^xsd:decimal ]
         ]
       ], [
         fhir:index 3;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P20Y--P40Y:M" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "0"^^xsd:decimal ]
         ]
       ], [
         fhir:index 4;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P40Y--P65Y:F" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "0"^^xsd:decimal ]
         ]
       ], [
         fhir:index 5;
         fhir:MeasureReport.group.stratifier.stratum.value [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.code [ fhir:value "P40Y--P65Y:M" ]
           ]
         ];
         fhir:MeasureReport.group.stratifier.stratum.measureScore [
           fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ]
         ]
       ]
     ]
  ] .

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

<http://hl7.org/fhir/MeasureReport/general-example-of-report.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/MeasureReport/general-example-of-report.ttl> .

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.