Technical Elements Documentation
    Preparing search index...

    Interface OperationalDataPoint

    Interface representing an operational data point collected from a specific component

    Represents a single instance of operational data collected from a component, such as a failure event, repair, inspection, or maintenance activity.

    DA-C3

    interface OperationalDataPoint {
        componentReference: string;
        componentTypeReference: string;
        description?: string;
        eventType: "maintenance" | "failure" | "repair" | "inspection";
        failureModeReference?: string;
        id: string;
        measurements?: Record<string, number>;
        metadata?: Record<string, any>;
        operatingCycles: number;
        operatingHours: number;
        timestamp: string;
    }
    Index

    Properties

    componentReference: string

    Reference to the component instance this data point is associated with

    componentTypeReference: string

    Reference to the component type of the component

    description?: string

    Textual description of the event

    eventType: "maintenance" | "failure" | "repair" | "inspection"

    Type of event recorded

    failureModeReference?: string

    Optional reference to the failure mode if this is a failure event

    id: string

    Unique identifier for this data point

    measurements?: Record<string, number>

    Additional measurements recorded during the event

    metadata?: Record<string, any>

    Domain-specific extension data

    operatingCycles: number

    Number of cycles the component had completed at the time of the event

    operatingHours: number

    Number of hours the component was in operation at the time of the event

    timestamp: string

    Timestamp when the data was recorded (ISO format)