Posos Widgets JavaScript SDK
    Preparing search index...

    Interface DosageSequence

    Structured dosage sequence for a medication.

    interface DosageSequence {
        asNeededBoolean?: boolean | null;
        doseAndRate?: DoseAndRate[] | null;
        maxDosePerPeriod?: MaxDosePerPeriod | null;
        modifierExtension?: ModifierExtensionStopMedication[] | null;
        route?: Route | null;
        sequence?: number | null;
        timing?: Timing | null;
    }
    Index

    Properties

    asNeededBoolean?: boolean | null

    Indicates whether the medication is only taken when needed within a specific dosing schedule.

    doseAndRate?: DoseAndRate[] | null

    Amount of medication administered at one time (dose), and the rate at which the medication is administered (rate).

    Each item defines how much medication should be given and how quickly.

    maxDosePerPeriod?: MaxDosePerPeriod | null

    The maximum total amount of medication that can be administered over a given time period.

    Used to limit cumulative exposure (e.g., "4g per 24h").

    modifierExtension?: ModifierExtensionStopMedication[] | null

    A list of FHIR modifier extensions.

    route?: Route | null

    The path or site into or onto the body where the medication should be administered.

    sequence?: number | null

    Indicates the order of the dosage instruction when multiple are present.

    Useful when there are multiple dosage instructions and order matters.

    timing?: Timing | null

    When the medication should be administered.

    Specifies frequency, interval, and timing bounds (e.g., "3 times a day").