Preparing search index...

    Interface MetaValue

    interface MetaValue {
        description?: string;
        displayName?: string;
        displayScale?: { lower: number; upper: number };
        displayUnits?: {
            category: string;
            formula: string;
            inverseFormula: string;
            symbol: string;
            targetUnit: string;
            displayFormat?: string;
        };
        example?: string;
        supportsPut?: boolean;
        timeout?: number
        | "auto";
        units?: string;
        updateContract?: UpdateContract;
        zones?: Zone[];
    }
    Index
    description?: string
    displayName?: string
    displayScale?: { lower: number; upper: number }
    displayUnits?: {
        category: string;
        formula: string;
        inverseFormula: string;
        symbol: string;
        targetUnit: string;
        displayFormat?: string;
    }
    example?: string
    supportsPut?: boolean
    timeout?: number | "auto"

    Time in seconds after which a path+source's last value is considered stale. 'auto' lets the server derive the timeout from observed delta arrival rate. 0 disables enforcement for the path.

    units?: string
    updateContract?: UpdateContract

    Declares the path's update contract for staleness enforcement. Defaults to 'periodic' when absent.

    zones?: Zone[]