CitationPublicationForm constructor

const CitationPublicationForm({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CitationPublishedIn? publishedIn,
  5. CodeableConcept? citedMedium,
  6. String? volume,
  7. @JsonKey(name: '_volume') Element? volumeElement,
  8. String? issue,
  9. @JsonKey(name: '_issue') Element? issueElement,
  10. FhirDateTime? articleDate,
  11. @JsonKey(name: '_articleDate') Element? articleDateElement,
  12. String? publicationDateText,
  13. @JsonKey(name: '_publicationDateText') Element? publicationDateTextElement,
  14. String? publicationDateSeason,
  15. @JsonKey(name: '_publicationDateSeason') Element? publicationDateSeasonElement,
  16. FhirDateTime? lastRevisionDate,
  17. @JsonKey(name: '_lastRevisionDate') Element? lastRevisionDateElement,
  18. List<CodeableConcept>? language,
  19. String? accessionNumber,
  20. @JsonKey(name: '_accessionNumber') Element? accessionNumberElement,
  21. String? pageString,
  22. @JsonKey(name: '_pageString') Element? pageStringElement,
  23. String? firstPage,
  24. @JsonKey(name: '_firstPage') Element? firstPageElement,
  25. String? lastPage,
  26. @JsonKey(name: '_lastPage') Element? lastPageElement,
  27. String? pageCount,
  28. @JsonKey(name: '_pageCount') Element? pageCountElement,
  29. FhirMarkdown? copyright,
  30. @JsonKey(name: '_copyright') Element? copyrightElement,
})

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

publishedIn The collection the cited article or artifact is published in.

citedMedium Describes the form of the medium cited. Common codes are "Internet" or "Print". The CitedMedium value set has 6 codes. The codes internet, print, and offline-digital-storage are the common codes for a typical publication form, though internet and print are more common for study citations. Three additional codes (each appending one of the primary codes with "-without-issue" are used for situations when a study is published both within an issue (of a periodical release as commonly done for journals) AND is published separately from the issue (as commonly done with early online publication), to represent specific identification of the publication form not associated with the issue.

volume Volume number of journal or other collection in which the article is published.

volumeElement ("_volume") Extensions for volume

issue Issue, part or supplement of journal or other collection in which the article is published.

issueElement ("_issue") Extensions for issue

articleDate The date the article was added to the database, or the date the article was released.

articleDateElement ("_articleDate") Extensions for articleDate

publicationDateText Text representation of the date on which the issue of the cited artifact was published.

publicationDateTextElement ("_publicationDateText") Extensions for publicationDateText

publicationDateSeason Spring, Summer, Fall/Autumn, Winter.

publicationDateSeasonElement ("_publicationDateSeason") Extensions for publicationDateSeason

lastRevisionDate The date the article was last revised or updated in the database.

lastRevisionDateElement ("_lastRevisionDate") Extensions for lastRevisionDate

language The language or languages in which this form of the article is published.

accessionNumber Entry number or identifier for inclusion in a database.

accessionNumberElement ("_accessionNumber") Extensions for accessionNumber

pageString Used for full display of pagination.

pageStringElement ("_pageString") Extensions for pageString

firstPage Used for isolated representation of first page.

firstPageElement ("_firstPage") Extensions for firstPage

lastPage Used for isolated representation of last page.

lastPageElement ("_lastPage") Extensions for lastPage

pageCount Actual or approximate number of pages or screens. Distinct from reporting the page numbers.

pageCountElement ("_pageCount") Extensions for pageCount

copyright Copyright notice for the full article or artifact.

copyrightElement ("_copyright") Extensions for copyright

Implementation

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

  /// [publishedIn] The collection the cited article or artifact is published
  ///  in.
  CitationPublishedIn? publishedIn,

  /// [citedMedium] Describes the form of the medium cited. Common codes are
  ///  "Internet" or "Print". The CitedMedium value set has 6 codes. The
  ///  codes internet, print, and offline-digital-storage are the common
  ///  codes for a typical publication form, though internet and print are
  ///  more common for study citations. Three additional codes (each
  ///  appending one of the primary codes with "-without-issue" are used for
  ///  situations when a study is published both within an issue (of a
  ///  periodical release as commonly done for journals) AND is published
  ///  separately from the issue (as commonly done with early online
  ///  publication), to represent specific identification of the publication
  ///  form not associated with the issue.
  CodeableConcept? citedMedium,

  /// [volume] Volume number of journal or other collection in which the
  ///  article is published.
  String? volume,

  /// [volumeElement] ("_volume") Extensions for volume
  @JsonKey(name: '_volume') Element? volumeElement,

  /// [issue] Issue, part or supplement of journal or other collection in
  ///  which the article is published.
  String? issue,

  /// [issueElement] ("_issue") Extensions for issue
  @JsonKey(name: '_issue') Element? issueElement,

  /// [articleDate] The date the article was added to the database, or the
  ///  date the article was released.
  FhirDateTime? articleDate,

  /// [articleDateElement] ("_articleDate") Extensions for articleDate
  @JsonKey(name: '_articleDate') Element? articleDateElement,

  /// [publicationDateText] Text representation of the date on which the
  ///  issue of the cited artifact was published.
  String? publicationDateText,

  /// [publicationDateTextElement] ("_publicationDateText") Extensions for
  ///  publicationDateText
  @JsonKey(name: '_publicationDateText') Element? publicationDateTextElement,

  /// [publicationDateSeason] Spring, Summer, Fall/Autumn, Winter.
  String? publicationDateSeason,

  /// [publicationDateSeasonElement] ("_publicationDateSeason") Extensions
  ///  for publicationDateSeason
  @JsonKey(name: '_publicationDateSeason')
  Element? publicationDateSeasonElement,

  /// [lastRevisionDate] The date the article was last revised or updated in
  ///  the database.
  FhirDateTime? lastRevisionDate,

  /// [lastRevisionDateElement] ("_lastRevisionDate") Extensions for
  ///  lastRevisionDate
  @JsonKey(name: '_lastRevisionDate') Element? lastRevisionDateElement,

  /// [language] The language or languages in which this form of the article
  ///  is published.
  List<CodeableConcept>? language,

  /// [accessionNumber] Entry number or identifier for inclusion in a
  ///  database.
  String? accessionNumber,

  /// [accessionNumberElement] ("_accessionNumber") Extensions for
  ///  accessionNumber
  @JsonKey(name: '_accessionNumber') Element? accessionNumberElement,

  /// [pageString] Used for full display of pagination.
  String? pageString,

  /// [pageStringElement] ("_pageString") Extensions for pageString
  @JsonKey(name: '_pageString') Element? pageStringElement,

  /// [firstPage] Used for isolated representation of first page.
  String? firstPage,

  /// [firstPageElement] ("_firstPage") Extensions for firstPage
  @JsonKey(name: '_firstPage') Element? firstPageElement,

  /// [lastPage] Used for isolated representation of last page.
  String? lastPage,

  /// [lastPageElement] ("_lastPage") Extensions for lastPage
  @JsonKey(name: '_lastPage') Element? lastPageElement,

  /// [pageCount] Actual or approximate number of pages or screens. Distinct
  ///  from reporting the page numbers.
  String? pageCount,

  /// [pageCountElement] ("_pageCount") Extensions for pageCount
  @JsonKey(name: '_pageCount') Element? pageCountElement,

  /// [copyright] Copyright notice for the full article or artifact.
  FhirMarkdown? copyright,

  /// [copyrightElement] ("_copyright") Extensions for copyright
  @JsonKey(name: '_copyright') Element? copyrightElement,
}) = _CitationPublicationForm;