Posos Widgets JavaScript SDK
    Preparing search index...

    Interface PatientProfile

    interface PatientProfile {
        allergies?: (string | PatientProfileAllergy)[];
        birthDate?: string;
        breastfeedingStartDate?: string;
        concurrentTreatments?: PatientProfileConcurrentTreatment[];
        conditions?: PatientProfileCondition[];
        gfr?: number;
        height?: number;
        lastPeriodDate?: string;
        sex?: "male" | "female";
        weight?: number;
    }
    Index

    Properties

    allergies?: (string | PatientProfileAllergy)[]

    The patient’s allergies.

    Prefer using codings instead of plain labels.

    birthDate?: string

    The patient’s birth date in YYYY-MM-DD format.

    breastfeedingStartDate?: string

    The patient’s breastfeeding start date in YYYY-MM-DD format.

    concurrentTreatments?: PatientProfileConcurrentTreatment[]

    The patient’s concurrent treatments.

    The patient’s clinical profile.

    gfr?: number

    The Patient’s GFR (Glomerular Filtration Rate) in mL/min/1.73 m².

    height?: number

    The patient’s height in cm.

    lastPeriodDate?: string

    The patient’s last period date in YYYY-MM-DD format.

    sex?: "male" | "female"

    The patient’s sex.

    weight?: number

    The patient’s weight in kg.