Technical Elements Documentation
    Preparing search index...

    Interface BaseAssumption

    Base interface for assumptions across technical elements. Provides a consistent structure for documenting assumptions.

    interface BaseAssumption {
        addressingPlans?: string;
        description: string;
        impact?: string;
        isPreOperational?: boolean;
        limitations?: string[];
        rationale?: string;
        references?: string[];
        status?: "OPEN" | "CLOSED" | "IN_PROGRESS";
    }

    Hierarchy (View Summary)

    Index

    Properties

    addressingPlans?: string

    Plans to address or validate the assumption

    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

    rationale?: string

    Justification or rationale for the assumption

    references?: string[]

    References to supporting documentation

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

    Current status of the assumption