StructureMapGroup constructor

const StructureMapGroup({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirId? name,
  5. @JsonKey(name: '_name') Element? nameElement,
  6. @JsonKey(name: 'extends') FhirId? extends_,
  7. @JsonKey(name: '_extends') Element? extendsElement,
  8. FhirCode? typeMode,
  9. @JsonKey(name: '_typeMode') Element? typeModeElement,
  10. String? documentation,
  11. @JsonKey(name: '_documentation') Element? documentationElement,
  12. required List<StructureMapInput> input,
  13. List<StructureMapRule>? rule,
})

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

name A unique name for the group for the convenience of human readers.

nameElement ("_name") Extensions for name

extends_ ("extends") Another group that this group adds rules to.

extendsElement ("_extends") Extensions for extends

typeMode If this is the default rule set to apply for the source type or this combination of types.

typeModeElement ("_typeMode") Extensions for typeMode

documentation Additional supporting documentation that explains the purpose of the group and the types of mappings within it.

documentationElement ("_documentation") Extensions for documentation

input A name assigned to an instance of data. The instance must be provided when the mapping is invoked.

rule Transform Rule from source to target.

Implementation

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

  /// [name] A unique name for the group for the convenience of human readers.
  FhirId? name,

  /// [nameElement] ("_name") Extensions for name
  @JsonKey(name: '_name') Element? nameElement,

  /// [extends_] ("extends") Another group that this group adds rules to.
  @JsonKey(name: 'extends') FhirId? extends_,

  /// [extendsElement] ("_extends") Extensions for extends
  @JsonKey(name: '_extends') Element? extendsElement,

  /// [typeMode] If this is the default rule set to apply for the source type
  ///  or this combination of types.
  FhirCode? typeMode,

  /// [typeModeElement] ("_typeMode") Extensions for typeMode
  @JsonKey(name: '_typeMode') Element? typeModeElement,

  /// [documentation] Additional supporting documentation that explains the
  ///  purpose of the group and the types of mappings within it.
  String? documentation,

  /// [documentationElement] ("_documentation") Extensions for documentation
  @JsonKey(name: '_documentation') Element? documentationElement,

  /// [input] A name assigned to an instance of data. The instance must be
  ///  provided when the mapping is invoked.
  required List<StructureMapInput> input,

  /// [rule] Transform Rule from source to target.
  List<StructureMapRule>? rule,
}) = _StructureMapGroup;