ConceptMapElement constructor

const ConceptMapElement({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirCode? code,
  5. @JsonKey(name: '_code') Element? codeElement,
  6. String? display,
  7. @JsonKey(name: '_display') Element? displayElement,
  8. FhirCanonical? valueSet,
  9. FhirBoolean? noMap,
  10. @JsonKey(name: '_noMap') Element? noMapElement,
  11. List<ConceptMapTarget>? target,
})

ConceptMapElement A statement of relationships from one set of concepts to one or more other concepts - either concepts in code systems, or data element/data element concepts, or classes in class models.

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

code Identity (code or path) or the element/item being mapped.

codeElement ("_code") Extensions for code

display The display for the code. The display is only provided to help editors when editing the concept map.

displayElement ("_display") Extensions for display

valueSet The set of concepts from the ConceptMap.group.source code system which are all being mapped to the target as part of this mapping rule.

noMap If noMap = true this indicates that no mapping to a target concept exists for this source concept.

noMapElement ("_noMap") Extensions for noMap

target A concept from the target value set that this concept maps to.

Implementation

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

  /// [code] Identity (code or path) or the element/item being mapped.
  FhirCode? code,

  /// [codeElement] ("_code") Extensions for code
  @JsonKey(name: '_code') Element? codeElement,

  /// [display] The display for the code. The display is only provided to
  ///  help editors when editing the concept map.
  String? display,

  /// [displayElement] ("_display") Extensions for display
  @JsonKey(name: '_display') Element? displayElement,

  /// [valueSet] The set of concepts from the ConceptMap.group.source code
  ///  system which are all being mapped to the target as part of this
  ///  mapping rule.
  FhirCanonical? valueSet,

  /// [noMap] If noMap = true this indicates that no mapping to a target
  ///  concept exists for this source concept.
  FhirBoolean? noMap,

  /// [noMapElement] ("_noMap") Extensions for noMap
  @JsonKey(name: '_noMap') Element? noMapElement,

  /// [target] A concept from the target value set that this concept maps to.
  List<ConceptMapTarget>? target,
}) = _ConceptMapElement;