Technical Elements Documentation
    Preparing search index...

    Interface BasicEventBoundary

    Interface representing basic event boundary definitions

    DA-A1

    This interface defines boundaries for basic events that are used in data analysis. It references the core BasicEvent type from the upstream core/events.ts module. The BasicEvent type is the most upstream definition and is used across multiple modules.

    interface BasicEventBoundary {
        basicEventId: string;
        boundaryBasis: string;
        description: string;
        excludedConditions?: string[];
        includedConditions: string[];
        referenceDocuments?: string[];
        systemReference?: string;
    }

    Hierarchy

    • Unique
    • Named
      • BasicEventBoundary
    Index

    Properties

    basicEventId: string

    Basic event identifier - references a BasicEvent from the core events module This establishes a link to the upstream BasicEvent definition

    boundaryBasis: string

    Basis for boundary definition

    description: string

    Boundary description

    excludedConditions?: string[]

    Conditions excluded from the boundary

    includedConditions: string[]

    Conditions included in the boundary

    referenceDocuments?: string[]

    Reference documents defining the boundary

    systemReference?: string

    Reference to the system where this basic event is used This creates a link to the SystemBasicEvent in the systems-analysis module