EvidenceReportSection constructor

const EvidenceReportSection({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? title,
  5. @JsonKey(name: '_title') Element? titleElement,
  6. CodeableConcept? focus,
  7. Reference? focusReference,
  8. List<Reference>? author,
  9. Narrative? text,
  10. FhirCode? mode,
  11. @JsonKey(name: '_mode') Element? modeElement,
  12. CodeableConcept? orderedBy,
  13. List<CodeableConcept>? entryClassifier,
  14. List<Reference>? entryReference,
  15. List<Quantity>? entryQuantity,
  16. CodeableConcept? emptyReason,
  17. List<EvidenceReportSection>? section,
})

EvidenceReportSection The EvidenceReport Resource is a specialized container for a collection of resources and codeable concepts, adapted to support compositions of Evidence, EvidenceVariable, and Citation resources and related concepts.

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

title The label for this particular section. This will be part of the rendered content for the document, and is often used to build a table of contents.

titleElement ("_title") Extensions for title

focus A code identifying the kind of content contained within the section. This should be consistent with the section title.

focusReference A definitional Resource identifying the kind of content contained within the section. This should be consistent with the section title.

author Identifies who is responsible for the information in this section, not necessarily who typed it in.

text A human-readable narrative that contains the attested content of the section, used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is peferred to contain sufficient detail to make it acceptable for a human to just read the narrative.

mode How the entry list was prepared - whether it is a working list that is suitable for being maintained on an ongoing basis, or if it represents a snapshot of a list of items from another source, or whether it is a prepared list where items may be marked as added, modified or deleted.

modeElement ("_mode") Extensions for mode

orderedBy Specifies the order applied to the items in the section entries.

entryClassifier Specifies any type of classification of the evidence report.

entryReference A reference to the actual resource from which the narrative in the section is derived.

entryQuantity Quantity as content.

emptyReason If the section is empty, why the list is empty. An empty section typically has some text explaining the empty reason.

section A nested sub-section within this section.

Implementation

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

  /// [title] The label for this particular section.  This will be part of
  ///  the rendered content for the document, and is often used to build a
  ///  table of contents.
  String? title,

  /// [titleElement] ("_title") Extensions for title
  @JsonKey(name: '_title') Element? titleElement,

  /// [focus] A code identifying the kind of content contained within the
  ///  section. This should be consistent with the section title.
  CodeableConcept? focus,

  /// [focusReference] A definitional Resource identifying the kind of
  ///  content contained within the section. This should be consistent with
  ///  the section title.
  Reference? focusReference,

  /// [author] Identifies who is responsible for the information in this
  ///  section, not necessarily who typed it in.
  List<Reference>? author,

  /// [text] A human-readable narrative that contains the attested content of
  ///  the section, used to represent the content of the resource to a human.
  ///  The narrative need not encode all the structured data, but is peferred
  ///  to contain sufficient detail to make it acceptable for a human to just
  ///  read the narrative.
  Narrative? text,

  /// [mode] How the entry list was prepared - whether it is a working list
  ///  that is suitable for being maintained on an ongoing basis, or if it
  ///  represents a snapshot of a list of items from another source, or
  ///  whether it is a prepared list where items may be marked as added,
  ///  modified or deleted.
  FhirCode? mode,

  /// [modeElement] ("_mode") Extensions for mode
  @JsonKey(name: '_mode') Element? modeElement,

  /// [orderedBy] Specifies the order applied to the items in the section
  ///  entries.
  CodeableConcept? orderedBy,

  /// [entryClassifier] Specifies any type of classification of the evidence
  ///  report.
  List<CodeableConcept>? entryClassifier,

  /// [entryReference] A reference to the actual resource from which the
  ///  narrative in the section is derived.
  List<Reference>? entryReference,

  /// [entryQuantity] Quantity as content.
  List<Quantity>? entryQuantity,

  /// [emptyReason] If the section is empty, why the list is empty. An empty
  ///  section typically has some text explaining the empty reason.
  CodeableConcept? emptyReason,

  /// [section] A nested sub-section within this section.
  List<EvidenceReportSection>? section,
}) = _EvidenceReportSection;