Technical Elements Documentation
    Preparing search index...

    Interface PreOperationalAssumption

    Interface for pre-operational assumptions that are made due to lack of as-built, as-operated details. Extends the base assumption with additional properties specific to pre-operational contexts.

    interface PreOperationalAssumption {
        addressingPlans?: string;
        assumptionId: string;
        description: string;
        impact?: string;
        isPreOperational?: boolean;
        limitations: string[];
        rationale?: string;
        references?: string[];
        requiredDesignInformation?: BaseDesignInformation[];
        resolutionPlan?: string;
        status: "OPEN" | "CLOSED" | "IN_PROGRESS";
    }

    Hierarchy (View Summary)

    Index

    Properties

    addressingPlans?: string

    Plans to address or validate the assumption

    assumptionId: string

    Unique identifier for the assumption within its context

    description: string

    Description of the assumption

    impact?: string

    Impact of the assumption on the analysis

    isPreOperational?: boolean

    Whether this is a pre-operational assumption (due to lack of as-built/as-operated details)

    limitations: string[]

    Limitations imposed by this assumption - required for pre-operational assumptions

    rationale?: string

    Justification or rationale for the assumption

    references?: string[]

    References to supporting documentation

    requiredDesignInformation?: BaseDesignInformation[]

    Design information needed to resolve the assumption

    resolutionPlan?: string

    Specific resolution plan for addressing this assumption

    status: "OPEN" | "CLOSED" | "IN_PROGRESS"

    Current status - required for pre-operational assumptions