pub struct MeasureGroupPopulation {Show 17 fields
pub id: Option<String>,
pub extension: Vec<Extension>,
pub modifier_extension: Vec<Extension>,
pub link_id: Option<String>,
pub link_id_ext: Option<FieldExtension>,
pub code: Option<CodeableConcept>,
pub code_ext: Option<FieldExtension>,
pub description: Option<String>,
pub description_ext: Option<FieldExtension>,
pub criteria: Option<Expression>,
pub criteria_ext: Option<FieldExtension>,
pub group_definition: Option<Reference>,
pub group_definition_ext: Option<FieldExtension>,
pub input_population_id: Option<String>,
pub input_population_id_ext: Option<FieldExtension>,
pub aggregate_method: Option<CodeableConcept>,
pub aggregate_method_ext: Option<FieldExtension>,
}Expand description
Sub-fields of the population field in MeasureGroup
Fields§
§id: Option<String>Unique id for inter-element referencing
Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
extension: Vec<Extension>Additional content defined by implementations
May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.
There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
modifier_extension: Vec<Extension>Extensions that cannot be ignored even if unrecognized
May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element’s descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.
Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).
There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
link_id: Option<String>Unique id for population in measure
An identifier that is unique within the Measure allowing linkage to the equivalent population in a MeasureReport resource.
This ’‘can’’ be a meaningful identifier (e.g. a LOINC code) but is not intended to have any meaning. GUIDs or sequential numbers are appropriate here.
LinkIds can have whitespaces and slashes by design. Tooling should not rely on linkIds being valid XHTML element IDs, and should not directly embed them as such
link_id_ext: Option<FieldExtension>Extension field.
code: Option<CodeableConcept>MeasurePopulationType; initial-population | numerator | numerator-exclusion | denominator | denominator-exclusion | denominator-exception | measure-population | measure-population-exclusion | measure-observation
The type of population criteria.
code_ext: Option<FieldExtension>Extension field.
description: Option<String>The human readable description of this population criteria
The human readable description of this population criteria.
description_ext: Option<FieldExtension>Extension field.
criteria: Option<Expression>The criteria that defines this population
An expression that specifies the criteria for the population, typically the name of an expression in a library.
In the case of a continuous-variable or ratio measure, this may be the name of a function that calculates the value of the individual observation for each patient or event in the population. For these types of measures, individual observations are reported as observation resources included in the evaluatedResources bundle for each patient. See the MeasureReport resource or the Quality Reporting topic for more information.
criteria_ext: Option<FieldExtension>Extension field.
group_definition: Option<Reference>A group resource that defines this population
A Group resource that defines this population as a set of characteristics.
Note that this approach can only be used for measures where the basis is of the same type as the populations (e.g. a Patient-based measure, rather than an Encounter-based measure). In addition, the referenced Group resource SHALL be a definitional (as opposed to an actual) group.
group_definition_ext: Option<FieldExtension>Extension field.
input_population_id: Option<String>Which population
The id of a population element in this measure that provides the input for this population criteria. In most cases, the scoring structure of the measure implies specific relationships (e.g. the Numerator uses the Denominator as the source in a proportion scoring). In some cases, however, multiple possible choices exist and must be resolved explicitly. For example in a ratio measure with multiple initial populations, the denominator must specify which population should be used as the starting point.
input_population_id_ext: Option<FieldExtension>Extension field.
aggregate_method: Option<CodeableConcept>MeasureAggregateMethod; Aggregation method for a measure score (e.g. sum, average, median, minimum, maximum, count)
Specifies which method should be used to aggregate measure observation values. For most scoring types, this is implied by scoring (e.g. a proportion measure counts members of the populations). For continuous variables, however, this information must be specified to ensure correct calculation.
aggregate_method_ext: Option<FieldExtension>Extension field.
Implementations§
Source§impl MeasureGroupPopulation
impl MeasureGroupPopulation
Sourcepub fn builder() -> MeasureGroupPopulationBuilder
pub fn builder() -> MeasureGroupPopulationBuilder
Start building a new instance
Trait Implementations§
Source§impl Clone for MeasureGroupPopulation
impl Clone for MeasureGroupPopulation
Source§fn clone(&self) -> MeasureGroupPopulation
fn clone(&self) -> MeasureGroupPopulation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more