NamingSystemUniqueId constructor

const NamingSystemUniqueId({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirCode? type,
  5. @JsonKey(name: '_type') Element? typeElement,
  6. String? value,
  7. @JsonKey(name: '_value') Element? valueElement,
  8. FhirBoolean? preferred,
  9. @JsonKey(name: '_preferred') Element? preferredElement,
  10. String? comment,
  11. @JsonKey(name: '_comment') Element? commentElement,
  12. Period? period,
})

NamingSystemUniqueId A curated namespace that issues unique symbols within that namespace for the identification of concepts, people, devices, etc. Represents a "System" used within the Identifier and Coding data types.

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

type Identifies the unique identifier scheme used for this particular identifier.

typeElement Extensions for type

value The string that should be sent over the wire to identify the code system or identifier system.

valueElement Extensions for value

preferred Indicates whether this identifier is the "preferred" identifier of this type.

preferredElement Extensions for preferred

comment Notes about the past or intended usage of this identifier.

commentElement Extensions for comment

period Identifies the period of time over which this identifier is considered appropriate to refer to the naming system. Outside of this window, the identifier might be non-deterministic.

Implementation

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

  /// [type] Identifies the unique identifier scheme used for this particular
  ///  identifier.
  FhirCode? type,

  /// [typeElement] Extensions for type
  @JsonKey(name: '_type') Element? typeElement,

  /// [value] The string that should be sent over the wire to identify the code
  ///  system or identifier system.
  String? value,

  /// [valueElement] Extensions for value
  @JsonKey(name: '_value') Element? valueElement,

  /// [preferred] Indicates whether this identifier is the "preferred"
  ///  identifier of this type.
  FhirBoolean? preferred,

  /// [preferredElement] Extensions for preferred
  @JsonKey(name: '_preferred') Element? preferredElement,

  /// [comment] Notes about the past or intended usage of this identifier.
  String? comment,

  /// [commentElement] Extensions for comment
  @JsonKey(name: '_comment') Element? commentElement,

  /// [period] Identifies the period of time over which this identifier is
  /// considered appropriate to refer to the naming system.  Outside of this
  ///  window, the identifier might be non-deterministic.
  Period? period,
}) = _NamingSystemUniqueId;