import { IBackboneElement } from '../base'; import { ICodeableConcept } from '../datatypes'; /** * @name IMedicationKnowledgeMedicineClassification * @description Information about a medication that is used to support knowledge. * @see MedicationKnowledgeMedicineClassification * @version R4 * @extends {IBackboneElement} * @author Claudia Alarcón Lazo */ export interface IMedicationKnowledgeMedicineClassification extends IBackboneElement { /** * @description The type of category for the medication (for example, therapeutic classification, therapeutic sub-classification). */ type: ICodeableConcept; /** * @description Specific category assigned to the medication (e.g. anti-infective, anti-hypertensive, antibiotic, etc.). */ classification?: ICodeableConcept[]; }