Posos Widgets JavaScript SDK
    Preparing search index...

    Interface ModifierExtensionCycleInstruction

    FHIR Modifier Extension: Indicates that the dosage should follow a cyclic pattern.

    This extension defines a repeated cycle instruction, such as "every 3 days" or "every 2 weeks", and is applied to timing elements. The extension modifies the meaning of the base dosage timing.

    interface ModifierExtensionCycleInstruction {
        url: "https://terminology.posos.co/fhir-extension/timing/cycle-instruction";
        valueDuration: {
            code: "a" | "s" | "min" | "h" | "d" | "wk" | "mo";
            system: "http://hl7.org/fhir/ValueSet/duration-units";
            unit: string;
            value: number;
        };
    }
    Index

    Properties

    Properties

    url: "https://terminology.posos.co/fhir-extension/timing/cycle-instruction"

    Canonical URL that identifies this extension definition.

    valueDuration: {
        code: "a" | "s" | "min" | "h" | "d" | "wk" | "mo";
        system: "http://hl7.org/fhir/ValueSet/duration-units";
        unit: string;
        value: number;
    }

    Duration of the cycle (e.g., "every 3 days"). Includes value, unit, code, and system—typically aligned with UCUM standards.