RiskAssessmentPrediction constructor

const RiskAssessmentPrediction({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? outcome,
  5. FhirDecimal? probabilityDecimal,
  6. @JsonKey(name: '_probabilityDecimal') Element? probabilityDecimalElement,
  7. Range? probabilityRange,
  8. CodeableConcept? qualitativeRisk,
  9. FhirDecimal? relativeRisk,
  10. @JsonKey(name: '_relativeRisk') Element? relativeRiskElement,
  11. Period? whenPeriod,
  12. Range? whenRange,
  13. String? rationale,
  14. @JsonKey(name: '_rationale') Element? rationaleElement,
})

RiskAssessmentPrediction An assessment of the likely outcome(s) for a patient or other subject as well as the likelihood of each outcome.

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

outcome One of the potential outcomes for the patient (e.g. remission, death, a particular condition).

probabilityDecimal Indicates how likely the outcome is (in the specified timeframe).

probabilityDecimalElement ("_probabilityDecimal") Extensions for probabilityDecimal

probabilityRange Indicates how likely the outcome is (in the specified timeframe).

qualitativeRisk Indicates how likely the outcome is (in the specified timeframe), expressed as a qualitative value (e.g. low, medium, or high).

relativeRisk Indicates the risk for this particular subject (with their specific characteristics) divided by the risk of the population in general. (Numbers greater than 1 = higher risk than the population, numbers less than 1 = lower risk.).

relativeRiskElement ("_relativeRisk") Extensions for relativeRisk

whenPeriod Indicates the period of time or age range of the subject to which the specified probability applies.

whenRange Indicates the period of time or age range of the subject to which the specified probability applies.

rationale Additional information explaining the basis for the prediction.

rationaleElement ("_rationale") Extensions for rationale

Implementation

const factory RiskAssessmentPrediction({
  /// [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,

  /// [outcome] One of the potential outcomes for the patient (e.g.
  ///  remission, death,  a particular condition).
  CodeableConcept? outcome,

  /// [probabilityDecimal] Indicates how likely the outcome is (in the
  ///  specified timeframe).
  FhirDecimal? probabilityDecimal,

  /// [probabilityDecimalElement] ("_probabilityDecimal") Extensions for
  ///  probabilityDecimal
  @JsonKey(name: '_probabilityDecimal') Element? probabilityDecimalElement,

  /// [probabilityRange] Indicates how likely the outcome is (in the
  ///  specified timeframe).
  Range? probabilityRange,

  /// [qualitativeRisk] Indicates how likely the outcome is (in the specified
  ///  timeframe), expressed as a qualitative value (e.g. low, medium, or
  ///  high).
  CodeableConcept? qualitativeRisk,

  /// [relativeRisk] Indicates the risk for this particular subject (with
  ///  their specific characteristics) divided by the risk of the population
  ///  in general.  (Numbers greater than 1 = higher risk than the
  ///  population, numbers less than 1 = lower risk.).
  FhirDecimal? relativeRisk,

  /// [relativeRiskElement] ("_relativeRisk") Extensions for relativeRisk
  @JsonKey(name: '_relativeRisk') Element? relativeRiskElement,

  /// [whenPeriod] Indicates the period of time or age range of the subject
  ///  to which the specified probability applies.
  Period? whenPeriod,

  /// [whenRange] Indicates the period of time or age range of the subject to
  ///  which the specified probability applies.
  Range? whenRange,

  /// [rationale] Additional information explaining the basis for the
  ///  prediction.
  String? rationale,

  /// [rationaleElement] ("_rationale") Extensions for rationale
  @JsonKey(name: '_rationale') Element? rationaleElement,
}) = _RiskAssessmentPrediction;