GraphDefinitionLink constructor

const GraphDefinitionLink({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? description,
  5. @JsonKey(name: '_description') Element? descriptionElement,
  6. FhirInteger? min,
  7. @JsonKey(name: '_min') Element? minElement,
  8. String? max,
  9. @JsonKey(name: '_max') Element? maxElement,
  10. FhirId? sourceId,
  11. @JsonKey(name: '_sourceId') Element? sourceIdElement,
  12. String? path,
  13. @JsonKey(name: '_path') Element? pathElement,
  14. String? sliceName,
  15. @JsonKey(name: '_sliceName') Element? sliceNameElement,
  16. FhirId? targetId,
  17. @JsonKey(name: '_targetId') Element? targetIdElement,
  18. String? params,
  19. @JsonKey(name: '_params') Element? paramsElement,
  20. List<GraphDefinitionCompartment>? compartment,
})

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_ ("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).

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

descriptionElement ("_description") Extensions for description

min Minimum occurrences for this link.

minElement ("_min") Extensions for min

max Maximum occurrences for this link.

maxElement ("_max") Extensions for max

sourceId The source node for this link.

sourceIdElement ("_sourceId") Extensions for sourceId

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

pathElement ("_path") Extensions for path

sliceName Which slice (if profiled).

sliceNameElement ("_sliceName") Extensions for sliceName

targetId The target node for this link.

targetIdElement ("_targetId") Extensions for targetId

params A set of parameters to look up.

paramsElement ("_params") Extensions for params

compartment Compartment Consistency Rules.

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') 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,

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

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

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

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

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

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

  /// [sourceId] The source node for this link.
  FhirId? sourceId,

  /// [sourceIdElement] ("_sourceId") Extensions for sourceId
  @JsonKey(name: '_sourceId') Element? sourceIdElement,

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

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

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

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

  /// [targetId] The target node for this link.
  FhirId? targetId,

  /// [targetIdElement] ("_targetId") Extensions for targetId
  @JsonKey(name: '_targetId') Element? targetIdElement,

  /// [params] A set of parameters to look up.
  String? params,

  /// [paramsElement] ("_params") Extensions for params
  @JsonKey(name: '_params') Element? paramsElement,

  /// [compartment] Compartment Consistency Rules.
  List<GraphDefinitionCompartment>? compartment,
}) = _GraphDefinitionLink;