ElementDefinitionSlicing constructor

const ElementDefinitionSlicing({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. List<ElementDefinitionDiscriminator>? discriminator,
  5. String? description,
  6. @JsonKey(name: '_description') Element? descriptionElement,
  7. FhirBoolean? ordered,
  8. @JsonKey(name: '_ordered') Element? orderedElement,
  9. ElementDefinitionSlicingRules? rules,
  10. @JsonKey(name: '_rules') Element? rulesElement,
})

ElementDefinitionSlicing Captures constraints on each element within the resource, profile, or extension.

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

discriminator Designates which child elements are used to discriminate between the slices when processing an instance. If one or more discriminators are provided, the value of the child elements in the instance data SHALL completely distinguish which slice the element in the resource matches based on the allowed values for those elements in each of the slices.

description A human-readable text description of how the slicing works. If there is no discriminator, this is required to be present to provide whatever information is possible about how the slices can be differentiated.

descriptionElement ("_description") Extensions for description

ordered If the matching elements have to occur in the same order as defined in the profile.

orderedElement ("_ordered") Extensions for ordered

rules Whether additional slices are allowed or not. When the slices are ordered, profile authors can also say that additional slices are only allowed at the end.

rulesElement ("_rules") Extensions for rules

Implementation

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

  /// [discriminator] Designates which child elements are used to
  ///  discriminate between the slices when processing an instance. If one or
  ///  more discriminators are provided, the value of the child elements in
  ///  the instance data SHALL completely distinguish which slice the element
  ///  in the resource matches based on the allowed values for those elements
  ///  in each of the slices.
  List<ElementDefinitionDiscriminator>? discriminator,

  /// [description] A human-readable text description of how the slicing
  ///  works. If there is no discriminator, this is required to be present to
  ///  provide whatever information is possible about how the slices can be
  ///  differentiated.
  String? description,

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

  /// [ordered] If the matching elements have to occur in the same order as
  ///  defined in the profile.
  FhirBoolean? ordered,

  /// [orderedElement] ("_ordered") Extensions for ordered
  @JsonKey(name: '_ordered') Element? orderedElement,

  /// [rules] Whether additional slices are allowed or not. When the slices
  ///  are ordered, profile authors can also say that additional slices are
  ///  only allowed at the end.
  ElementDefinitionSlicingRules? rules,

  /// [rulesElement] ("_rules") Extensions for rules
  @JsonKey(name: '_rules') Element? rulesElement,
}) = _ElementDefinitionSlicing;