/** * 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 { Age } from './age'; import { Canonical } from './canonical'; import { Code } from './code'; import { CodeableConcept } from './codeableConcept'; import { CodeableReference } from './codeableReference'; import { Duration } from './duration'; import { Extension } from './extension'; import { Id } from './id'; import { Markdown } from './markdown'; import { PlanDefinitionCondition } from './planDefinitionCondition'; import { PlanDefinitionDynamicValue } from './planDefinitionDynamicValue'; import { PlanDefinitionInput } from './planDefinitionInput'; import { PlanDefinitionOutput } from './planDefinitionOutput'; import { PlanDefinitionParticipant } from './planDefinitionParticipant'; import { PlanDefinitionRelatedAction } from './planDefinitionRelatedAction'; import { Range } from './range'; import { Reference } from './reference'; import { RelatedArtifact } from './relatedArtifact'; import { Timing } from './timing'; import { TriggerDefinition } from './triggerDefinition'; /** * This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical and non-clinical artifacts such as clinical decision support rules, order sets, protocols, and drug quality specifications. */ export interface PlanDefinitionAction { 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; linkId?: string; prefix?: string; title?: string; description?: Markdown; textEquivalent?: Markdown; priority?: Code; code?: CodeableConcept; /** * A description of why this action is necessary or appropriate. */ reason?: Array; /** * Didactic or other informational resources associated with the action that can be provided to the CDS recipient. Information resources can include inline text commentary and links to web resources. */ documentation?: Array; /** * Identifies goals that this action supports. The reference must be to a goal element defined within this plan definition. In pharmaceutical quality, a goal represents acceptance criteria (Goal) for a given action (Test), so the goalId would be the unique id of a defined goal element establishing the acceptance criteria for the action. */ goalId?: Array; subjectCodeableConcept?: CodeableConcept; subjectReference?: Reference; /** * A code, group definition, or canonical reference that describes the intended subject of the action and its children, if any. Canonical references are allowed to support the definition of protocols for drug and substance quality specifications, and is allowed to reference a MedicinalProductDefinition, SubstanceDefinition, AdministrableProductDefinition, ManufacturedItemDefinition, or PackagedProductDefinition resource. */ subjectCanonical?: string; /** * A description of when the action should be triggered. When multiple triggers are specified on an action, any triggering event invokes the action. */ trigger?: Array; /** * An expression that describes applicability criteria or start/stop conditions for the action. */ condition?: Array; /** * Defines input data requirements for the action. */ input?: Array; /** * Defines the outputs of the action, if any. */ output?: Array; /** * A relationship to another action such as \"before\" or \"30-60 minutes after start of\". */ relatedAction?: Array; timingAge?: Age; timingDuration?: Duration; timingRange?: Range; timingTiming?: Timing; location?: CodeableReference; /** * Indicates who should participate in performing the action described. */ participant?: Array; type?: CodeableConcept; groupingBehavior?: Code; selectionBehavior?: Code; requiredBehavior?: Code; precheckBehavior?: Code; cardinalityBehavior?: Code; /** * A reference to an ActivityDefinition that describes the action to be taken in detail, a MessageDefinition describing a message to be snet, a PlanDefinition that describes a series of actions to be taken, a Questionnaire that should be filled out, a SpecimenDefinition describing a specimen to be collected, or an ObservationDefinition that specifies what observation should be captured. */ definitionCanonical?: string; /** * A reference to an ActivityDefinition that describes the action to be taken in detail, a MessageDefinition describing a message to be snet, a PlanDefinition that describes a series of actions to be taken, a Questionnaire that should be filled out, a SpecimenDefinition describing a specimen to be collected, or an ObservationDefinition that specifies what observation should be captured. */ definitionUri?: string; transform?: Canonical; /** * Customizations that should be applied to the statically defined resource. For example, if the dosage of a medication must be computed based on the patient's weight, a customization would be used to specify an expression that calculated the weight, and the path on the resource that would contain the result. */ dynamicValue?: Array; /** * Sub actions that are contained within the action. The behavior of this action determines the functionality of the sub-actions. For example, a selection behavior of at-most-one indicates that of the sub-actions, at most one may be chosen as part of realizing the action definition. */ action?: Array; }