CitationCitedArtifact constructor

const CitationCitedArtifact({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. List<Identifier>? identifier,
  5. List<Identifier>? relatedIdentifier,
  6. FhirDateTime? dateAccessed,
  7. @JsonKey(name: '_dateAccessed') Element? dateAccessedElement,
  8. CitationVersion? version,
  9. List<CodeableConcept>? currentState,
  10. List<CitationStatusDate1>? statusDate,
  11. List<CitationTitle>? title,
  12. @JsonKey(name: 'abstract') List<CitationAbstract>? abstract_,
  13. @JsonKey(name: 'part') CitationPart? part_,
  14. List<CitationRelatesTo>? relatesTo,
  15. List<CitationPublicationForm>? publicationForm,
  16. List<CitationWebLocation>? webLocation,
  17. List<CitationClassification1>? classification,
  18. CitationContributorship? contributorship,
  19. List<Annotation>? note,
})

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

identifier A formal identifier that is used to identify the cited artifact when it is represented in other formats, or referenced in a specification, model, design or an instance.

relatedIdentifier A formal identifier that is used to identify things closely related to the cited artifact.

dateAccessed When the cited artifact was accessed.

dateAccessedElement ("_dateAccessed") Extensions for dateAccessed

version The defined version of the cited artifact.

currentState The status of the cited artifact.

statusDate An effective date or period, historical or future, actual or expected, for a status of the cited artifact.

title The title details of the article or artifact.

abstract_ ("abstract") The abstract may be used to convey article-contained abstracts, externally-created abstracts, or other descriptive summaries.

part_ ("part") The component of the article or artifact.

relatesTo The artifact related to the cited artifact.

publicationForm If multiple, used to represent alternative forms of the article that are not separate citations.

webLocation Used for any URL for the article or artifact cited.

classification The assignment to an organizing scheme.

contributorship This element is used to list authors and other contributors, their contact information, specific contributions, and summary statements.

note Any additional information or content for the article or artifact.

Implementation

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

  /// [identifier] A formal identifier that is used to identify the cited
  ///  artifact when it is represented in other formats, or referenced in a
  ///  specification, model, design or an instance.
  List<Identifier>? identifier,

  /// [relatedIdentifier] A formal identifier that is used to identify things
  ///  closely related to the cited artifact.
  List<Identifier>? relatedIdentifier,

  /// [dateAccessed] When the cited artifact was accessed.
  FhirDateTime? dateAccessed,

  /// [dateAccessedElement] ("_dateAccessed") Extensions for dateAccessed
  @JsonKey(name: '_dateAccessed') Element? dateAccessedElement,

  /// [version] The defined version of the cited artifact.
  CitationVersion? version,

  /// [currentState] The status of the cited artifact.
  List<CodeableConcept>? currentState,

  /// [statusDate] An effective date or period, historical or future, actual
  ///  or expected, for a status of the cited artifact.
  List<CitationStatusDate1>? statusDate,

  /// [title] The title details of the article or artifact.
  List<CitationTitle>? title,

  /// [abstract_] ("abstract") The abstract may be used to convey
  ///  article-contained abstracts, externally-created abstracts, or other
  ///  descriptive summaries.
  @JsonKey(name: 'abstract') List<CitationAbstract>? abstract_,

  /// [part_] ("part") The component of the article or artifact.
  @JsonKey(name: 'part') CitationPart? part_,

  /// [relatesTo] The artifact related to the cited artifact.
  List<CitationRelatesTo>? relatesTo,

  /// [publicationForm] If multiple, used to represent alternative forms of
  ///  the article that are not separate citations.
  List<CitationPublicationForm>? publicationForm,

  /// [webLocation] Used for any URL for the article or artifact cited.
  List<CitationWebLocation>? webLocation,

  /// [classification] The assignment to an organizing scheme.
  List<CitationClassification1>? classification,

  /// [contributorship] This element is used to list authors and other
  ///  contributors, their contact information, specific contributions, and
  ///  summary statements.
  CitationContributorship? contributorship,

  /// [note] Any additional information or content for the article or
  ///  artifact.
  List<Annotation>? note,
}) = _CitationCitedArtifact;