StructureMapTarget constructor

const StructureMapTarget({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? context,
  5. @JsonKey(name: '_context') Element? contextElement,
  6. String? element,
  7. @JsonKey(name: '_element') Element? elementElement,
  8. FhirId? variable,
  9. @JsonKey(name: '_variable') Element? variableElement,
  10. List<FhirCode>? listMode,
  11. @JsonKey(name: '_listMode') List<Element>? listModeElement,
  12. FhirId? listRuleId,
  13. @JsonKey(name: '_listRuleId') Element? listRuleIdElement,
  14. FhirCode? transform,
  15. @JsonKey(name: '_transform') Element? transformElement,
  16. List<StructureMapParameter>? parameter,
})

StructureMapTarget A Map of relationships between 2 structures that can be used to transform data.

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 Variable this rule applies to.

contextElement ("_context") Extensions for context

element Field to create in the context.

elementElement ("_element") Extensions for element

variable Named context for field, if desired, and a field is specified.

variableElement ("_variable") Extensions for variable

listMode If field is a list, how to manage the list.

listModeElement ("_listMode") Extensions for listMode

listRuleId Internal rule reference for shared list items.

listRuleIdElement ("_listRuleId") Extensions for listRuleId

transform How the data is copied / created.

transformElement ("_transform") Extensions for transform

parameter Parameters to the transform.

Implementation

const factory StructureMapTarget({
  /// [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] Variable this rule applies to.
  String? context,

  /// [contextElement] ("_context") Extensions for context
  @JsonKey(name: '_context') Element? contextElement,

  /// [element] Field to create in the context.
  String? element,

  /// [elementElement] ("_element") Extensions for element
  @JsonKey(name: '_element') Element? elementElement,

  /// [variable] Named context for field, if desired, and a field is
  ///  specified.
  FhirId? variable,

  /// [variableElement] ("_variable") Extensions for variable
  @JsonKey(name: '_variable') Element? variableElement,

  /// [listMode] If field is a list, how to manage the list.
  List<FhirCode>? listMode,

  /// [listModeElement] ("_listMode") Extensions for listMode
  @JsonKey(name: '_listMode') List<Element>? listModeElement,

  /// [listRuleId] Internal rule reference for shared list items.
  FhirId? listRuleId,

  /// [listRuleIdElement] ("_listRuleId") Extensions for listRuleId
  @JsonKey(name: '_listRuleId') Element? listRuleIdElement,

  /// [transform] How the data is copied / created.
  FhirCode? transform,

  /// [transformElement] ("_transform") Extensions for transform
  @JsonKey(name: '_transform') Element? transformElement,

  /// [parameter] Parameters to the transform.
  List<StructureMapParameter>? parameter,
}) = _StructureMapTarget;