This page is part of the Quality Measure STU2 for FHIR R4 Implementation Guide (v2.0.0: STU 2) based on FHIR R4. The current version which supercedes this version is 3.0.0. For a full list of available versions, see the Directory of published versions
@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 ------------------------------------------------------------------- a fhir:CodeSystem; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "aggregate-method"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This code system http://hl7.org/fhir/us/cqfmeasures/CodeSystem/aggregate-method defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">sum<a name=\"aggregate-method-sum\"> </a></td><td>Sum</td><td>The measure score is determined by adding together the observations derived from the measure population.</td></tr><tr><td style=\"white-space:nowrap\">average<a name=\"aggregate-method-average\"> </a></td><td>Average</td><td>The measure score is determined by taking the average of the observations derived from the measure population.</td></tr><tr><td style=\"white-space:nowrap\">median<a name=\"aggregate-method-median\"> </a></td><td>Median</td><td>The measure score is determined by taking the median of the observations derived from the measure population.</td></tr><tr><td style=\"white-space:nowrap\">minimum<a name=\"aggregate-method-minimum\"> </a></td><td>Minimum</td><td>The measure score is determined by taking the minimum of the observations derived from the measure population.</td></tr><tr><td style=\"white-space:nowrap\">maximum<a name=\"aggregate-method-maximum\"> </a></td><td>Maximum</td><td>The measure score is determined by taking the maximum of the observations derived from the measure population.</td></tr><tr><td style=\"white-space:nowrap\">count<a name=\"aggregate-method-count\"> </a></td><td>Count</td><td>The measure score is determined as the number of observations derived from the measure population.</td></tr></table></div>" ]; fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/us/cqfmeasures/CodeSystem/aggregate-method"]; fhir:CodeSystem.version [ fhir:value "2.0.0"]; fhir:CodeSystem.name [ fhir:value "MeasureAggregateMethod"]; fhir:CodeSystem.status [ fhir:value "active"]; fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean]; fhir:CodeSystem.date [ fhir:value "2019-03-14T23:21:03-06:00"^^xsd:dateTime]; fhir:CodeSystem.publisher [ fhir:value "Clinical Quality Information Workgroup"]; fhir:CodeSystem.description [ fhir:value "Aggregation method for a measure (e.g. sum, average, median, minimum, maximum, count)"]; fhir:CodeSystem.jurisdiction [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ]; fhir:Coding.code [ fhir:value "US" ]; fhir:Coding.display [ fhir:value "United States of America" ] ] ]; fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean]; fhir:CodeSystem.valueSet [ fhir:value "http://hl7.org/fhir/us/cqfmeasures/ValueSet/aggregate-method"; fhir:link <http://hl7.org/fhir/us/cqfmeasures/ValueSet/aggregate-method> ]; fhir:CodeSystem.content [ fhir:value "complete"]; fhir:CodeSystem.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "sum" ]; fhir:CodeSystem.concept.display [ fhir:value "Sum" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined by adding together the observations derived from the measure population." ] ], [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "average" ]; fhir:CodeSystem.concept.display [ fhir:value "Average" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined by taking the average of the observations derived from the measure population." ] ], [ fhir:index 2; fhir:CodeSystem.concept.code [ fhir:value "median" ]; fhir:CodeSystem.concept.display [ fhir:value "Median" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined by taking the median of the observations derived from the measure population." ] ], [ fhir:index 3; fhir:CodeSystem.concept.code [ fhir:value "minimum" ]; fhir:CodeSystem.concept.display [ fhir:value "Minimum" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined by taking the minimum of the observations derived from the measure population." ] ], [ fhir:index 4; fhir:CodeSystem.concept.code [ fhir:value "maximum" ]; fhir:CodeSystem.concept.display [ fhir:value "Maximum" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined by taking the maximum of the observations derived from the measure population." ] ], [ fhir:index 5; fhir:CodeSystem.concept.code [ fhir:value "count" ]; fhir:CodeSystem.concept.display [ fhir:value "Count" ]; fhir:CodeSystem.concept.definition [ fhir:value "The measure score is determined as the number of observations derived from the measure population." ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.