CitationEntry constructor

const CitationEntry({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. required Reference contributor,
  5. String? forenameInitials,
  6. @JsonKey(name: '_forenameInitials') Element? forenameInitialsElement,
  7. List<Reference>? affiliation,
  8. List<CodeableConcept>? contributionType,
  9. CodeableConcept? role,
  10. List<CitationContributionInstance>? contributionInstance,
  11. FhirBoolean? correspondingContact,
  12. @JsonKey(name: '_correspondingContact') Element? correspondingContactElement,
  13. FhirPositiveInt? rankingOrder,
  14. @JsonKey(name: '_rankingOrder') Element? rankingOrderElement,
})

CitationEntry The Citation Resource enables reference to any knowledge artifact for purposes of identification and attribution. The Citation Resource supports existing reference structures and developing publication practices such as versioning, expressing complex contributorship roles, and referencing computable resources.

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

contributor The identity of the individual contributor.

forenameInitials For citation styles that use initials.

forenameInitialsElement ("_forenameInitials") Extensions for forenameInitials

affiliation Organization affiliated with the contributor.

contributionType This element identifies the specific nature of an individual’s contribution with respect to the cited work.

role The role of the contributor (e.g. author, editor, reviewer, funder).

contributionInstance Contributions with accounting for time or number.

correspondingContact Whether the contributor is the corresponding contributor for the role.

correspondingContactElement ("_correspondingContact") Extensions for correspondingContact

rankingOrder Provides a numerical ranking to represent the degree of contributorship relative to other contributors, such as 1 for first author and 2 for second author.

rankingOrderElement ("_rankingOrder") Extensions for rankingOrder

Implementation

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

  /// [contributor] The identity of the individual contributor.
  required Reference contributor,

  /// [forenameInitials] For citation styles that use initials.
  String? forenameInitials,

  /// [forenameInitialsElement] ("_forenameInitials") Extensions for
  ///  forenameInitials
  @JsonKey(name: '_forenameInitials') Element? forenameInitialsElement,

  /// [affiliation] Organization affiliated with the contributor.
  List<Reference>? affiliation,

  /// [contributionType] This element identifies the specific nature of an
  ///  individual’s contribution with respect to the cited work.
  List<CodeableConcept>? contributionType,

  /// [role] The role of the contributor (e.g. author, editor, reviewer,
  ///  funder).
  CodeableConcept? role,

  /// [contributionInstance] Contributions with accounting for time or number.
  List<CitationContributionInstance>? contributionInstance,

  /// [correspondingContact] Whether the contributor is the corresponding
  ///  contributor for the role.
  FhirBoolean? correspondingContact,

  /// [correspondingContactElement] ("_correspondingContact") Extensions for
  ///  correspondingContact
  @JsonKey(name: '_correspondingContact')
  Element? correspondingContactElement,

  /// [rankingOrder] Provides a numerical ranking to represent the degree of
  ///  contributorship relative to other contributors, such as 1 for first
  ///  author and 2 for second author.
  FhirPositiveInt? rankingOrder,

  /// [rankingOrderElement] ("_rankingOrder") Extensions for rankingOrder
  @JsonKey(name: '_rankingOrder') Element? rankingOrderElement,
}) = _CitationEntry;