Technical Elements Documentation
    Preparing search index...

    Interface representing a time window for operator actions. Used to define the available time for human actions in event sequences.

    interface TimeWindow {
        basis?: string;
        description?: string;
        deterministicAnalysisReferences?: string[];
        endTime: number & Minimum<0>;
        startTime: number & Minimum<0>;
    }
    Index

    Properties

    basis?: string

    Basis for the time window calculation

    description?: string

    Description of the time window

    deterministicAnalysisReferences?: string[]

    References to deterministic analyses supporting the time window

    endTime: number & Minimum<0>

    End time for the action (hours after initiating event)

    startTime: number & Minimum<0>

    Start time for the action (hours after initiating event)