CitationEntry constructor

const CitationEntry({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. HumanName? name,
  5. String? initials,
  6. @JsonKey(name: '_initials') Element? initialsElement,
  7. String? collectiveName,
  8. @JsonKey(name: '_collectiveName') Element? collectiveNameElement,
  9. List<Identifier>? identifier,
  10. List<CitationAffiliationInfo>? affiliationInfo,
  11. List<Address>? address,
  12. List<ContactPoint>? telecom,
  13. List<CodeableConcept>? contributionType,
  14. CodeableConcept? role,
  15. List<CitationContributionInstance>? contributionInstance,
  16. FhirBoolean? correspondingContact,
  17. @JsonKey(name: '_correspondingContact') Element? correspondingContactElement,
  18. FhirPositiveInt? listOrder,
  19. @JsonKey(name: '_listOrder') Element? listOrderElement,
})

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

name A name associated with the individual.

initials Initials for forename.

initialsElement _(_initials) Extensions for initials

collectiveName Used for collective or corporate name as an author.

collectiveNameElement _(_collectiveName) Extensions for collectiveName

identifier Unique person identifier.

affiliationInfo Organization affiliated with the entity.

address Physical mailing address for the author or contributor.

telecom Email or telephone contact methods for the author or 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).

contributionInstance Contributions with accounting for time or number.

correspondingContact Indication of which contributor is the corresponding contributor for the role.

correspondingContactElement _(_correspondingContact) Extensions for correspondingContact

listOrder Used to code order of authors.

listOrderElement _(_listOrder) Extensions for listOrder

Implementation

const factory CitationEntry({
  @JsonKey(name: 'id') FhirId? fhirId,
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  List<FhirExtension>? modifierExtension,
  HumanName? name,
  String? initials,
  @JsonKey(name: '_initials') Element? initialsElement,
  String? collectiveName,
  @JsonKey(name: '_collectiveName') Element? collectiveNameElement,
  List<Identifier>? identifier,
  List<CitationAffiliationInfo>? affiliationInfo,
  List<Address>? address,
  List<ContactPoint>? telecom,
  List<CodeableConcept>? contributionType,
  CodeableConcept? role,
  List<CitationContributionInstance>? contributionInstance,
  FhirBoolean? correspondingContact,
  @JsonKey(name: '_correspondingContact')
  Element? correspondingContactElement,
  FhirPositiveInt? listOrder,
  @JsonKey(name: '_listOrder') Element? listOrderElement,
}) = _CitationEntry;