NamingSystemUniqueId constructor

const NamingSystemUniqueId({
  1. @JsonKey(name: 'id') String? 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,
  13. FhirBoolean? authoritative,
  14. @JsonKey(name: '_authoritative') Element? authoritativeElement,
})

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

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

typeElement ("_type") Extensions for type

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

valueElement ("_value") Extensions for value

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

preferredElement ("_preferred") Extensions for preferred

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

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

authoritative Indicates whether this identifier ie endorsed by the official owner of the associated naming system.

authoritativeElement ("_authoritative") Extensions for authoritative

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

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

  /// [typeElement] ("_type") 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] ("_value") Extensions for value
  @JsonKey(name: '_value') Element? valueElement,

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

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

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

  /// [commentElement] ("_comment") 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,

  /// [authoritative] Indicates whether this identifier ie endorsed by the
  ///  official owner of the associated naming system.
  FhirBoolean? authoritative,

  /// [authoritativeElement] ("_authoritative") Extensions for authoritative
  @JsonKey(name: '_authoritative') Element? authoritativeElement,
}) = _NamingSystemUniqueId;