Posos Widgets JavaScript SDK
    Preparing search index...

    Interface AnalysisRequest

    interface AnalysisRequest {
        drugs: {
            coding: { code: string; terminology: string };
            dosage?: { sequences: DosageSequence[] };
            type: "branded_drug" | "clinical_drug" | "packaged_drug";
        }[];
        patientProfile: PatientProfile;
    }
    Index

    Properties

    drugs: {
        coding: { code: string; terminology: string };
        dosage?: { sequences: DosageSequence[] };
        type: "branded_drug" | "clinical_drug" | "packaged_drug";
    }[]

    Type Declaration

    • coding: { code: string; terminology: string }

      A drug coding object.

      • code: string

        The unique coding code.

      • terminology: string

        The coding terminology.

    • Optionaldosage?: { sequences: DosageSequence[] }

      The dosage instructions object.

    • type: "branded_drug" | "clinical_drug" | "packaged_drug"

      The type of the drug item.

    patientProfile: PatientProfile