import { IBackboneElement } from '../base'; import { ICodeableConcept, IReference } from '../datatypes'; /** * @name IMedicationKnowledgeRelatedMedicationKnowledge * @description Information about a medication that is used to support knowledge. * @see MedicationKnowledgeRelatedMedicationKnowledge * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface IMedicationKnowledgeRelatedMedicationKnowledge extends IBackboneElement { /** * @description The category of the associated medication knowledge reference. */ type: ICodeableConcept; /** * @description Associated documentation about the associated medication knowledge. */ reference: IReference[]; }