PlanDefinitionGoal constructor

const PlanDefinitionGoal({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CodeableConcept? category,
  5. required CodeableConcept description,
  6. CodeableConcept? priority,
  7. CodeableConcept? start,
  8. List<CodeableConcept>? addresses,
  9. List<RelatedArtifact>? documentation,
  10. List<PlanDefinitionTarget>? target,
})

PlanDefinitionGoal This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical and non-clinical artifacts such as clinical decision support rules, order sets, protocols, and drug quality specifications.

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

category Indicates a category the goal falls within.

description Human-readable and/or coded description of a specific desired objective of care, such as "control blood pressure" or "negotiate an obstacle course" or "dance with child at wedding".

priority Identifies the expected level of importance associated with reaching/sustaining the defined goal.

start The event after which the goal should begin being pursued.

addresses Identifies problems, conditions, issues, or concerns the goal is intended to address.

documentation Didactic or other informational resources associated with the goal that provide further supporting information about the goal. Information resources can include inline text commentary and links to web resources.

target Indicates what should be done and within what timeframe.

Implementation

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

  /// [category] Indicates a category the goal falls within.
  CodeableConcept? category,

  /// [description] Human-readable and/or coded description of a specific
  ///  desired objective of care, such as "control blood pressure" or
  ///  "negotiate an obstacle course" or "dance with child at wedding".
  required CodeableConcept description,

  /// [priority] Identifies the expected level of importance associated with
  ///  reaching/sustaining the defined goal.
  CodeableConcept? priority,

  /// [start] The event after which the goal should begin being pursued.
  CodeableConcept? start,

  /// [addresses] Identifies problems, conditions, issues, or concerns the
  ///  goal is intended to address.
  List<CodeableConcept>? addresses,

  /// [documentation] Didactic or other informational resources associated
  ///  with the goal that provide further supporting information about the
  ///  goal. Information resources can include inline text commentary and
  ///  links to web resources.
  List<RelatedArtifact>? documentation,

  /// [target] Indicates what should be done and within what timeframe.
  List<PlanDefinitionTarget>? target,
}) = _PlanDefinitionGoal;