CitationPublicationForm constructor

const CitationPublicationForm({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. CitationPublishedIn? publishedIn,
  5. CitationPeriodicRelease? periodicRelease,
  6. FhirDateTime? articleDate,
  7. @JsonKey(name: '_articleDate') Element? articleDateElement,
  8. FhirDateTime? lastRevisionDate,
  9. @JsonKey(name: '_lastRevisionDate') Element? lastRevisionDateElement,
  10. List<CodeableConcept>? language,
  11. String? accessionNumber,
  12. @JsonKey(name: '_accessionNumber') Element? accessionNumberElement,
  13. String? pageString,
  14. @JsonKey(name: '_pageString') Element? pageStringElement,
  15. String? firstPage,
  16. @JsonKey(name: '_firstPage') Element? firstPageElement,
  17. String? lastPage,
  18. @JsonKey(name: '_lastPage') Element? lastPageElement,
  19. String? pageCount,
  20. @JsonKey(name: '_pageCount') Element? pageCountElement,
  21. FhirMarkdown? copyright,
  22. @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_ 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).

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

periodicRelease The specific issue in which the cited article resides.

articleDate The date the article was added to the database, or the date the article was released (which may differ from the journal issue publication date).

articleDateElement _(_articleDate) Extensions for articleDate

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

lastRevisionDateElement _(_lastRevisionDate) Extensions for lastRevisionDate

language Language 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.

pageCountElement _(_pageCount) Extensions for pageCount

copyright Copyright notice for the full article or artifact.

copyrightElement _(_copyright) Extensions for copyright

Implementation

const factory CitationPublicationForm({
  @JsonKey(name: 'id') FhirId? fhirId,
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  List<FhirExtension>? modifierExtension,
  CitationPublishedIn? publishedIn,
  CitationPeriodicRelease? periodicRelease,
  FhirDateTime? articleDate,
  @JsonKey(name: '_articleDate') Element? articleDateElement,
  FhirDateTime? lastRevisionDate,
  @JsonKey(name: '_lastRevisionDate') Element? lastRevisionDateElement,
  List<CodeableConcept>? language,
  String? accessionNumber,
  @JsonKey(name: '_accessionNumber') Element? accessionNumberElement,
  String? pageString,
  @JsonKey(name: '_pageString') Element? pageStringElement,
  String? firstPage,
  @JsonKey(name: '_firstPage') Element? firstPageElement,
  String? lastPage,
  @JsonKey(name: '_lastPage') Element? lastPageElement,
  String? pageCount,
  @JsonKey(name: '_pageCount') Element? pageCountElement,
  FhirMarkdown? copyright,
  @JsonKey(name: '_copyright') Element? copyrightElement,
}) = _CitationPublicationForm;