Interface TimeSeriesCreate

interface TimeSeriesCreate {
    assetId?: number;
    dataSetId?: number;
    description?: string;
    externalId?: string;
    isStep?: boolean;
    isString?: boolean;
    legacyName?: string;
    metadata?: Metadata;
    name?: string;
    securityCategories?: number[];
    unit?: string;
    unitExternalId?: string;
}

Properties

assetId?: number

Asset that this time series belongs to.

dataSetId?: number

DataSet that this time series related with.

description?: string

Description of the time series.

externalId?: string

Externally provided id for the time series (optional but recommended)

isStep?: boolean

Whether the time series is a step series or not.

isString?: boolean

Whether the time series is string valued or not.

legacyName?: string

This field is deprecated and ignored by the API.

metadata?: Metadata

Additional metadata. String key -> String value.

name?: string

Human readable name of time series

securityCategories?: number[]

Security categories required in order to access this time series.

unit?: string

The physical unit of the time series.

unitExternalId?: string

The physical unit of the time series (reference to unit catalog).