AllergyIntoleranceReaction constructor

const AllergyIntoleranceReaction({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? substance,
  5. required List<CodeableReference> manifestation,
  6. String? description,
  7. @JsonKey(name: '_description') Element? descriptionElement,
  8. FhirDateTime? onset,
  9. @JsonKey(name: '_onset') Element? onsetElement,
  10. FhirCode? severity,
  11. @JsonKey(name: '_severity') Element? severityElement,
  12. CodeableConcept? exposureRoute,
  13. List<Annotation>? note,
})

AllergyIntoleranceReaction Risk of harmful or undesirable physiological response which is specific to an individual and associated with exposure to a substance.

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

substance Identification of the specific substance (or pharmaceutical product) considered to be responsible for the Adverse Reaction event. Note: the substance for a specific reaction may be different from the substance identified as the cause of the risk, but it must be consistent with it. For instance, it may be a more specific substance (e.g. a brand medication) or a composite product that includes the identified substance. It must be clinically safe to only process the 'code' and ignore the 'reaction.substance'. If a receiving system is unable to confirm that AllergyIntolerance.reaction.substance falls within the semantic scope of AllergyIntolerance.code, then the receiving system should ignore AllergyIntolerance.reaction.substance.

manifestation Clinical symptoms and/or signs that are observed or associated with the adverse reaction event.

description Text description about the reaction as a whole, including details of the manifestation if required.

descriptionElement ("_description") Extensions for description

onset Record of the date and/or time of the onset of the Reaction.

onsetElement ("_onset") Extensions for onset

severity Clinical assessment of the severity of the reaction event as a whole, potentially considering multiple different manifestations.

severityElement ("_severity") Extensions for severity

exposureRoute Identification of the route by which the subject was exposed to the substance.

note Additional text about the adverse reaction event not captured in other fields.

Implementation

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

  /// [substance] Identification of the specific substance (or pharmaceutical
  ///  product) considered to be responsible for the Adverse Reaction event.
  ///  Note: the substance for a specific reaction may be different from the
  ///  substance identified as the cause of the risk, but it must be
  ///  consistent with it. For instance, it may be a more specific substance
  ///  (e.g. a brand medication) or a composite product that includes the
  ///  identified substance. It must be clinically safe to only process the
  ///  'code' and ignore the 'reaction.substance'.  If a receiving system is
  ///  unable to confirm that AllergyIntolerance.reaction.substance falls
  ///  within the semantic scope of AllergyIntolerance.code, then the
  ///  receiving system should ignore AllergyIntolerance.reaction.substance.
  CodeableConcept? substance,

  /// [manifestation] Clinical symptoms and/or signs that are observed or
  ///  associated with the adverse reaction event.
  required List<CodeableReference> manifestation,

  /// [description] Text description about the reaction as a whole, including
  ///  details of the manifestation if required.
  String? description,

  /// [descriptionElement] ("_description") Extensions for description
  @JsonKey(name: '_description') Element? descriptionElement,

  /// [onset] Record of the date and/or time of the onset of the Reaction.
  FhirDateTime? onset,

  /// [onsetElement] ("_onset") Extensions for onset
  @JsonKey(name: '_onset') Element? onsetElement,

  /// [severity] Clinical assessment of the severity of the reaction event as
  ///  a whole, potentially considering multiple different manifestations.
  FhirCode? severity,

  /// [severityElement] ("_severity") Extensions for severity
  @JsonKey(name: '_severity') Element? severityElement,

  /// [exposureRoute] Identification of the route by which the subject was
  ///  exposed to the substance.
  CodeableConcept? exposureRoute,

  /// [note] Additional text about the adverse reaction event not captured in
  ///  other fields.
  List<Annotation>? note,
}) = _AllergyIntoleranceReaction;