GraphDefinitionLink constructor

const GraphDefinitionLink({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? path,
  5. @JsonKey(name: '_path') Element? pathElement,
  6. String? sliceName,
  7. @JsonKey(name: '_sliceName') Element? sliceNameElement,
  8. FhirInteger? min,
  9. @JsonKey(name: '_min') Element? minElement,
  10. String? max,
  11. @JsonKey(name: '_max') Element? maxElement,
  12. String? description,
  13. @JsonKey(name: '_description') Element? descriptionElement,
  14. List<GraphDefinitionTarget>? target,
})

GraphDefinitionLink A formal computable definition of a graph of resources - that is, a coherent set of resources that form a graph by following references. The Graph Definition resource defines a set and makes rules about the set.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

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

path A FHIR expression that identifies one of FHIR References to other resources.

pathElement Extensions for path

sliceName Which slice (if profiled).

sliceNameElement Extensions for sliceName

min Minimum occurrences for this link.

minElement Extensions for min

max Maximum occurrences for this link.

maxElement Extensions for max

description Information about why this link is of interest in this graph definition.

descriptionElement Extensions for description

target Potential target for the link.

Implementation

const factory GraphDefinitionLink({
  /// [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') FhirId? fhirId,

  /// [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 manageable, 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 manageable, 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,

  /// [path] A FHIR expression that identifies one of FHIR References to other
  ///  resources.
  String? path,

  /// [pathElement] Extensions for path
  @JsonKey(name: '_path') Element? pathElement,

  /// [sliceName] Which slice (if profiled).
  String? sliceName,

  /// [sliceNameElement] Extensions for sliceName
  @JsonKey(name: '_sliceName') Element? sliceNameElement,

  /// [min] Minimum occurrences for this link.
  FhirInteger? min,

  /// [minElement] Extensions for min
  @JsonKey(name: '_min') Element? minElement,

  /// [max] Maximum occurrences for this link.
  String? max,

  /// [maxElement] Extensions for max
  @JsonKey(name: '_max') Element? maxElement,

  /// [description] Information about why this link is of interest in this
  ///  graph definition.
  String? description,

  /// [descriptionElement] Extensions for description
  @JsonKey(name: '_description') Element? descriptionElement,

  /// [target] Potential target for the link.
  List<GraphDefinitionTarget>? target,
}) = _GraphDefinitionLink;