ObservationDefinitionQualifiedValue constructor

const ObservationDefinitionQualifiedValue({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? context,
  5. List<CodeableConcept>? appliesTo,
  6. FhirCode? gender,
  7. @JsonKey(name: '_gender') Element? genderElement,
  8. Range? age,
  9. Range? gestationalAge,
  10. String? condition,
  11. @JsonKey(name: '_condition') Element? conditionElement,
  12. FhirCode? rangeCategory,
  13. @JsonKey(name: '_rangeCategory') Element? rangeCategoryElement,
  14. Range? range,
  15. FhirCanonical? validCodedValueSet,
  16. FhirCanonical? normalCodedValueSet,
  17. FhirCanonical? abnormalCodedValueSet,
  18. FhirCanonical? criticalCodedValueSet,
})

ObservationDefinitionQualifiedValue Set of definitional characteristics for a kind of observation or measurement produced or consumed by an orderable health care service.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ ("extension") 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.

modifierExtension 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).

context A concept defining the context for this set of qualified values.

appliesTo The target population this set of qualified values applies to.

gender The gender this set of qualified values applies to.

genderElement ("_gender") Extensions for gender

age The age range this set of qualified values applies to.

gestationalAge The gestational age this set of qualified values applies to.

condition Text based condition for which the the set of qualified values is valid.

conditionElement ("_condition") Extensions for condition

rangeCategory The category of range of values for continuous or ordinal observations that match the criteria of this set of qualified values.

rangeCategoryElement ("_rangeCategory") Extensions for rangeCategory

range The range of values defined for continuous or ordinal observations that match the criteria of this set of qualified values.

validCodedValueSet The set of valid coded results for qualitative observations that match the criteria of this set of qualified values.

normalCodedValueSet The set of normal coded results for qualitative observations that match the criteria of this set of qualified values.

abnormalCodedValueSet The set of abnormal coded results for qualitative observations that match the criteria of this set of qualified values.

criticalCodedValueSet The set of critical coded results for qualitative observations that match the criteria of this set of qualified values.

Implementation

const factory ObservationDefinitionQualifiedValue({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') String? fhirId,

  /// [extension_] ("extension") 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.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] 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).
  List<FhirExtension>? modifierExtension,

  /// [context] A concept defining the context for this set of qualified
  ///  values.
  CodeableConcept? context,

  /// [appliesTo] The target population this  set of qualified values applies
  ///  to.
  List<CodeableConcept>? appliesTo,

  /// [gender] The gender this  set of qualified values applies to.
  FhirCode? gender,

  /// [genderElement] ("_gender") Extensions for gender
  @JsonKey(name: '_gender') Element? genderElement,

  /// [age] The age range this  set of qualified values applies to.
  Range? age,

  /// [gestationalAge] The gestational age this  set of qualified values
  ///  applies to.
  Range? gestationalAge,

  /// [condition] Text based condition for which the the set of qualified
  ///  values is valid.
  String? condition,

  /// [conditionElement] ("_condition") Extensions for condition
  @JsonKey(name: '_condition') Element? conditionElement,

  /// [rangeCategory] The category of range of values for continuous or
  ///  ordinal observations that match the criteria of this set of qualified
  ///  values.
  FhirCode? rangeCategory,

  /// [rangeCategoryElement] ("_rangeCategory") Extensions for rangeCategory
  @JsonKey(name: '_rangeCategory') Element? rangeCategoryElement,

  /// [range] The range of values defined for continuous or ordinal
  ///  observations that match the criteria of this set of qualified values.
  Range? range,

  /// [validCodedValueSet] The set of valid coded results for qualitative
  ///  observations  that match the criteria of this set of qualified values.
  FhirCanonical? validCodedValueSet,

  /// [normalCodedValueSet] The set of normal coded results for qualitative
  ///  observations  that match the criteria of this set of qualified values.
  FhirCanonical? normalCodedValueSet,

  /// [abnormalCodedValueSet] The set of abnormal coded results for
  ///  qualitative observations  that match the criteria of this set of
  ///  qualified values.
  FhirCanonical? abnormalCodedValueSet,

  /// [criticalCodedValueSet] The set of critical coded results for
  ///  qualitative observations  that match the criteria of this set of
  ///  qualified values.
  FhirCanonical? criticalCodedValueSet,
}) = _ObservationDefinitionQualifiedValue;