Technical Elements Documentation
    Preparing search index...

    Interface OperationalDataRegistry

    Interface representing a registry of operational data points

    Central repository for operational data points with indexing capabilities to facilitate efficient data retrieval for analysis.

    DA-C4

    interface OperationalDataRegistry {
        dataByComponentType?: Record<string, string[]>;
        dataByFailureMode?: Record<string, string[]>;
        dataPoints: OperationalDataPoint[];
        id: string;
        name: string;
    }
    Index

    Properties

    dataByComponentType?: Record<string, string[]>

    Indexing of data points by component type for efficient lookup

    dataByFailureMode?: Record<string, string[]>

    Indexing of data points by failure mode for efficient lookup

    dataPoints: OperationalDataPoint[]

    Array of all data points in the registry

    id: string

    Unique identifier for this registry

    name: string

    Name of the registry