/** * FHIR Version R5 * The following is auto generated resource definition. * * OpenAPI spec version: 3.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Annotation } from './annotation'; import { CitationAbstract } from './citationAbstract'; import { CitationClassification1 } from './citationClassification1'; import { CitationContributorship } from './citationContributorship'; import { CitationPart } from './citationPart'; import { CitationPublicationForm } from './citationPublicationForm'; import { CitationRelatesTo } from './citationRelatesTo'; import { CitationStatusDate1 } from './citationStatusDate1'; import { CitationTitle } from './citationTitle'; import { CitationVersion } from './citationVersion'; import { CitationWebLocation } from './citationWebLocation'; import { CodeableConcept } from './codeableConcept'; import { DateTime } from './dateTime'; import { Extension } from './extension'; import { Identifier } from './identifier'; /** * 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. */ export interface CitationCitedArtifact { id?: string; /** * 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. */ extension?: Array; /** * 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). */ modifierExtension?: Array; /** * 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. */ identifier?: Array; /** * A formal identifier that is used to identify things closely related to the cited artifact. */ relatedIdentifier?: Array; dateAccessed?: Date; version?: CitationVersion; /** * The status of the cited artifact. */ currentState?: Array; /** * An effective date or period, historical or future, actual or expected, for a status of the cited artifact. */ statusDate?: Array; /** * The title details of the article or artifact. */ title?: Array; /** * The abstract may be used to convey article-contained abstracts, externally-created abstracts, or other descriptive summaries. */ _abstract?: Array; part?: CitationPart; /** * The artifact related to the cited artifact. */ relatesTo?: Array; /** * If multiple, used to represent alternative forms of the article that are not separate citations. */ publicationForm?: Array; /** * Used for any URL for the article or artifact cited. */ webLocation?: Array; /** * The assignment to an organizing scheme. */ classification?: Array; contributorship?: CitationContributorship; /** * Any additional information or content for the article or artifact. */ note?: Array; }