aivis-engine-v2-ra-sdk-c  2.9.0
aivis-engine-v2-ra-sdk-c Documentation

This document describes the syntax of aivis Response Analysis using the C SDK. For more information please contact Vernaio.

JSON Structures

DtoAbstractCategory, DtoAbstractColumnInterpreter, DtoAbstractColumnValue, DtoAbstractError, DtoAbstractFunction, DtoAbstractInferenceSignalSpecification, DtoAbstractPredicate, DtoAbstractSignalDataReport, DtoAbstractSignalInterpreter, DtoAggregatedCategoricalFunction, DtoAggregatedNumericalFunction, DtoAggregationType, DtoAnalysisConfig, DtoAnalysisReport, DtoArgMaxFunction, DtoArgumentValidationError, DtoBooleanCategory, DtoBooleanColumnValue, DtoCategoricalColumnInterpreter, DtoCategoricalFunctionEvalType, DtoCategoricalSignalInterpreter, DtoCategoryEqualsFunction, DtoCategorySetPredicate, DtoClusterId, DtoColumnConfig, DtoColumnDataTypeUnexpectedError, DtoColumnId, DtoColumnIdAlreadyInUseError, DtoColumnInterpreterAmbiguousError, DtoColumnNotFoundError, DtoConstantFunction, DtoControlPointId, DtoCorrelation, DtoCosFunction, DtoCyclicSignalInterpreter, DtoDataConcurrentModificationError, DtoDataFilter, DtoDataFilterRange, DtoDataQualityInsufficientError, DtoDataQuantityInsufficientError, DtoDataReport, DtoDataType, DtoDefaultColumnInterpreter, DtoDefaultSignalInterpreter, DtoErrorParam, DtoExponentialFunction, DtoExpression, DtoExpressionResultDataTypeUnexpectedError, DtoExpressionRuntimeFailureError, DtoExpressionSyntaxFailureError, DtoFeatureFilter, DtoFeatureValue, DtoFloat, DtoFloatCategory, DtoFloatColumnValue, DtoFourierTransformFunction, DtoFunctionId, DtoGaussCdfFunction, DtoHandleDanglingError, DtoHandleTypeUnexpectedError, DtoIdCategoryEntry, DtoIdCategoryMapFunction, DtoIdCategoryProbaMapFunction, DtoIdentityFunction, DtoIncrementalLearningDataQualityInsufficientError, DtoIncrementalLearningModelCorruptedError, DtoInferenceDataPredecessorMissingError, DtoInferenceDataSpecification, DtoInferenceDataTypeUnexpectedError, DtoInferenceOutputTargetInterpreterTypeUnexpectedError, DtoInferenceOutputTypeUnexpectedError, DtoInferenceRawSignalSpecification, DtoInferenceSynthesizedSignalSpecification, DtoInterest, DtoInternalEngineFailureError, DtoInterval, DtoIntervalBeforeIncident, DtoIntervalWithoutIncident, DtoJsonParseFailureError, DtoJsonValidationFailureError, DtoKernelModelComponent, DtoKernelModelFunction, DtoKernelType, DtoLagFunction, DtoLicenseApiKeyNotFoundError, DtoLicenseInsufficientError, DtoLicenseServerCommunicationFailureError, DtoLogarithmFunction, DtoLogisticFunction, DtoLtiFilterFunction, DtoMaxFunction, DtoMollifierFunction, DtoNonNegativeDuration, DtoNonNegativeFloat, DtoNonNegativeInteger, DtoNumericalColumnInterpreter, DtoNumericalFunctionEvalType, DtoNumericalRangePredicate, DtoNumericalSignalInterpreter, DtoOscillatorySignalInterpretationFailure, DtoOscillatorySignalInterpreter, DtoPercentage, DtoPhaseSpectrumFunction, DtoPointerForeignError, DtoPointerTypeUnexpectedError, DtoPositiveDuration, DtoPositiveFloat, DtoPositiveInteger, DtoPowerSpectrumFunction, DtoPredicate, DtoPrincipalDirectionFunction, DtoProducer, DtoProductFunction, DtoRawSignalDataReport, DtoRecordSet, DtoRecordSetId, DtoReluFunction, DtoRootPredicate, DtoScaleFunction, DtoSegmentId, DtoSegmentNotFoundError, DtoSignalDataTypeUnexpectedError, DtoSignalFunction, DtoSignalId, DtoSignalIdAlreadyInUseError, DtoSignalInterpreterAmbiguousError, DtoSignalNotFoundError, DtoSinFunction, DtoStepFunction, DtoStrategy, DtoStringCategory, DtoStringColumnValue, DtoStringEncodingInvalidError, DtoSumFunction, DtoSymmetricBlockDiagonalMatrix, DtoSymmetricMatrix, DtoSynthesizedSignalDataReport, DtoTabularDataFilter, DtoTargetConfig, DtoTargetSignalDataTypeUnexpectedError, DtoTargetSignalLowQualityError, DtoTargetSignalNotFoundError, DtoTargetSignalTooManyCategoriesError, DtoTime, DtoTreeModelFunction, DtoTreeNode, DtoTreeNodeId, DtoUuid, DtoWeightColumnNegativeValueError

DtoAbstractSignalInterpreter

Interprets the signal values and derives aspects from them.

@abstract

Type: Object
Sub-Types: DtoDefaultSignalInterpreter, DtoNumericalSignalInterpreter, DtoCategoricalSignalInterpreter, DtoOscillatorySignalInterpreter, DtoCyclicSignalInterpreter
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.

DtoDefaultSignalInterpreter

Interprets float signals via DtoNumericalSignalInterpreter and string and boolean signals via DtoCategoricalSignalInterpreter.

Type: Object
Super-Types: DtoAbstractSignalInterpreter
Discriminator: _type
Discriminator-Value: Default

Property Type Markers Description
_type String - Type of this object.

DtoNumericalSignalInterpreter

Interprets the signal as being numerical. The natural order of the different values is taken into account.

Type: Object
Super-Types: DtoAbstractSignalInterpreter
Discriminator: _type
Discriminator-Value: Numerical

Property Type Markers Description
_type String - Type of this object.

DtoCategoricalSignalInterpreter

Interprets the different signal values as categories, which have no order. For every category a categorical boolean aspect is derived, which yields true if the signal value equals that category. This is the only allowed interpreter for string and boolean signals.

Type: Object
Super-Types: DtoAbstractSignalInterpreter
Discriminator: _type
Discriminator-Value: Categorical

Property Type Markers Description
_type String - Type of this object.

DtoOscillatorySignalInterpreter

Interprets the signal as an oscillatory wave. It is transformed from time- to frequency-domain.

Type: Object
Super-Types: DtoAbstractSignalInterpreter
Discriminator: _type
Discriminator-Value: Oscillatory

Property Type Markers Description
_type String - Type of this object.
windowLength DtoPositiveDuration - Length of the time window the frequency spectra are calculated for. The underlying discrete Fourier transform is based on the data at "t", "t - mesh", "t - 2*mesh", ... stopping before "t - windowLength".
mesh DtoPositiveDuration - Time resolution of the source signal that is used in window for computing Fourier transform. Timestamps with gaps of more than 2*mesh in their Fourier window are skipped. Mesh must not be bigger than window_length.

DtoCyclicSignalInterpreter

Interprets the signal as a cyclic variable, based on their residue after division. An important example are angles with a cycle length of 360 degrees. The wrapping at the cycle length is continuous, e.g. 2 degree are considered close to 357 degrees.

Type: Object
Super-Types: DtoAbstractSignalInterpreter
Discriminator: _type
Discriminator-Value: Cyclic

Property Type Markers Description
_type String - Type of this object.
cycleLength DtoPositiveFloat - Divisor used to calculate the residue. All signal values are mapped into the interval from 0 to cycle length.

DtoColumnConfig

Handling of a specific column.

Type: Object

Property Type Markers Description
column DtoColumnId - ID of the column.
interpreter DtoAbstractColumnInterpreter optional, default: {"_type":"Default"} Controls how this column will be interpreted.

DtoAbstractColumnInterpreter

Interprets the column values and splits them into different categories

@abstract

Type: Object
Sub-Types: DtoNumericalColumnInterpreter, DtoCategoricalColumnInterpreter, DtoDefaultColumnInterpreter
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.

DtoNumericalColumnInterpreter

Interprets the column as being numerical. The natural order of the different values is taken into account. The engine will split the values of this column into ranges. This interpreter is only allowed for float columns.

Type: Object
Super-Types: DtoAbstractColumnInterpreter
Discriminator: _type
Discriminator-Value: Numerical

Property Type Markers Description
_type String - Type of this object.
quantileCount DtoPositiveInteger optional, default: 20 Split the value range into this many quantiles. Values in the same quantile will not be differntiated by the engine.

DtoCategoricalColumnInterpreter

Interprets the different column values as categories, which have no order. The engine will consider DtoCategorySetPredicates for this column. This is the only allowed interpreter for string and boolean column.

Type: Object
Super-Types: DtoAbstractColumnInterpreter
Discriminator: _type
Discriminator-Value: Categorical

Property Type Markers Description
_type String - Type of this object.

DtoDefaultColumnInterpreter

Interprets float columns via DtoNumericalColumnInterpreter and string and boolean columns via DtoCategoricalColumnInterpreter.

Type: Object
Super-Types: DtoAbstractColumnInterpreter
Discriminator: _type
Discriminator-Value: Default

Property Type Markers Description
_type String - Type of this object.

DtoDataType

Specification of the type of data.

Type: String
Enum: BOOLEAN, FLOAT, STRING

DtoDataFilter

Limits the use of the data based on certain criteria.

Type: Object

Property Type Markers Description
includeSignals DtoDataFilterRange[] optional If present, restrict to these signal ranges.
excludeSignals DtoDataFilterRange[] optional If present, exclude all these signal ranges.
includeRanges DtoInterval[] optional If present, restrict to these ranges for all signals.
excludeRanges DtoInterval[] optional If present, exclude these ranges for all signals.
startTime DtoTime optional If present, exclude all data before this time. If both startTime and endTime are present we require startTime ≤ endTime.
endTime DtoTime optional If present, exclude all data at or after this time. If both startTime and endTime are present we require startTime ≤ endTime.

DtoDataFilterRange

Time range of a specific signal.

Type: Object

Property Type Markers Description
signal DtoSignalId - ID of the signal.
startTime DtoTime optional If present, the range only includes times at or after this time. If both startTime and endTime are present we require startTime ≤ endTime.
endTime DtoTime optional If present, the range only includes times before this time. If both startTime and endTime are present we require startTime ≤ endTime.

DtoInterval

Interval used to exclude/include data.

Type: Object

Property Type Markers Description
startTime DtoTime optional If present, the range only includes times at or after this time. If both startTime and endTime are present we require startTime ≤ endTime.
endTime DtoTime optional If present, the range only includes times before this time. If both startTime and endTime are present we require startTime ≤ endTime.

DtoIntervalBeforeIncident

Interval used to exclude/include data with an annotation denoting an estimated origin for an incident. This interval type is used for storing intervals before events (or incidents) for the state detection engine.

Type: Object

Property Type Markers Description
startTime DtoTime optional If present, the range only includes times at or after this time. If both startTime and endTime are present we require startTime ≤ endTime.
endTime DtoTime optional If present, the range only includes times before this time. If both startTime and endTime are present we require startTime ≤ endTime.

DtoIntervalWithoutIncident

Interval used to exclude/include data with an annotation denoting an estimated origin for an incident. This interval type is used for storing intervals before events (or incidents) for the state detection engine.

Type: Object

Property Type Markers Description
startTime DtoTime optional If present, the range only includes times at or after this time. If both startTime and endTime are present we require startTime ≤ endTime.
endTime DtoTime optional If present, the range only includes times before this time. If both startTime and endTime are present we require startTime ≤ endTime.

DtoDataReport

Information about the data.

Type: Object

Property Type Markers Description
signals DtoAbstractSignalDataReport[] - Information on all signals in the data.

DtoAbstractSignalDataReport

Information on a specific signal in the data.

@abstract

Type: Object
Sub-Types: DtoRawSignalDataReport, DtoSynthesizedSignalDataReport
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.

DtoRawSignalDataReport

Information on a specific signal in the data, whose values were added directly.

Type: Object
Super-Types: DtoAbstractSignalDataReport
Discriminator: _type
Discriminator-Value: Raw

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.

DtoSynthesizedSignalDataReport

Information on a specific signal in the data, whose values were calculated by an expression (synthesized).

Type: Object
Super-Types: DtoAbstractSignalDataReport
Discriminator: _type
Discriminator-Value: Synthesized

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.
expression String - Expression by which this signal was synthesized.
involvedSignals DtoSignalId[] - Source signals that were used in the expression to synthesize the signal.

DtoInferenceDataSpecification

Specification for the data needed at the inference.

Type: Object

Property Type Markers Description
signals DtoAbstractInferenceSignalSpecification[] - Specification for all signals needed at the inference.

DtoAbstractInferenceSignalSpecification

Specification for a specific signal needed at the inference.

@abstract

Type: Object
Sub-Types: DtoInferenceRawSignalSpecification, DtoInferenceSynthesizedSignalSpecification
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.

DtoInferenceRawSignalSpecification

Specification for a specific signal needed at the inference, whose values were added directly.

Type: Object
Super-Types: DtoAbstractInferenceSignalSpecification
Discriminator: _type
Discriminator-Value: Raw

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.
startLag DtoNonNegativeDuration - Start of the time window measured as duration until the inference timestamp.
endLag DtoNonNegativeDuration - End of the time window (inclusive), measured as duration until the inference timestamp.

DtoInferenceSynthesizedSignalSpecification

Specification for a specific signal needed at the inference, whose values were calculated by an expression (synthesized).

Type: Object
Super-Types: DtoAbstractInferenceSignalSpecification
Discriminator: _type
Discriminator-Value: Synthesized

Property Type Markers Description
_type String - Type of this object.
signal DtoSignalId - ID of the signal.
dataType DtoDataType - Data type of the signal.
expression String - Expression by which this signal was synthesized.
involvedSignals DtoSignalId[] - Source signals that were used in the expression to synthesize the signal.

DtoFeatureFilter

Limits the use of features based on certain criteria.

Type: Object

Property Type Markers Description
includeFeatures DtoFunctionId[] optional If present, restrict to these features.
excludeFeatures DtoFunctionId[] optional If present, exclude all these features.
includeSignals DtoSignalId[] optional If present, restrict to the features created by these signals.
excludeSignals DtoSignalId[] optional If present, exclude all features created by these signals.

DtoTabularDataFilter

Limits the use of the data based on certain criteria.

Type: Object

Property Type Markers Description
includeColumns DtoColumnId[] optional If present, include only these columns.
excludeColumns DtoColumnId[] optional If present, exclude all these columns.

DtoAbstractFunction

Parts of the formula describing the calculation while inference. Functions are succesively evaluated on signals and other functions to derive a final inference result.

@abstract

Type: Object
Sub-Types: DtoSignalFunction, DtoLagFunction, DtoLtiFilterFunction, DtoCategoryEqualsFunction, DtoFourierTransformFunction, DtoPowerSpectrumFunction, DtoPhaseSpectrumFunction, DtoSinFunction, DtoCosFunction, DtoScaleFunction, DtoPrincipalDirectionFunction, DtoLogisticFunction, DtoReluFunction, DtoIdentityFunction, DtoMollifierFunction, DtoIdCategoryMapFunction, DtoIdCategoryProbaMapFunction, DtoSumFunction, DtoMaxFunction, DtoArgMaxFunction, DtoProductFunction, DtoConstantFunction, DtoStepFunction, DtoLogarithmFunction, DtoExponentialFunction, DtoGaussCdfFunction, DtoAggregatedNumericalFunction, DtoAggregatedCategoricalFunction, DtoKernelModelFunction, DtoTreeModelFunction
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.

DtoSignalFunction

Wraps a signal into a function.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Signal

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
signal DtoSignalId - The ID of the signal to be used as function.

DtoLagFunction

Lags the values of the source function by some fixed delay.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Lag

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
source DtoFunctionId - ID of the function whose values are lagged.
lag DtoNonNegativeDuration - The delay. The value of the resulting function at time "t" is given by "source(t - lag)".

DtoLtiFilterFunction

An LtiFilterFunction is the convolution of a moving time window of the input with some fixed function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: LtiFilter

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
source DtoFunctionId - FunctionId of the only input function.
parameters DtoFloat[] - Parameters of the lti-filter function. The value of the resulting function at time t is given by "sum_i source(t - mesh * (parameters.size - i -1)) * parameters[i]".
mesh DtoPositiveDuration - Time resolution of the source used in this function.

DtoCategoryEqualsFunction

A CategoricalEqualsFunction applied to a categorical function yields a 0/1-function for one of the function's categories. Numeric, string or boolean input and numeric output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: CategoryEquals

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
category DtoFunctionId - FunctionId of the only input function.
testValue DtoAbstractCategory - The category (=value) of the categorical source for which this 0/1-function is created. The function is 1 when the source evaluates to this value. Otherwise, the function evaluates to 0.

DtoFourierTransformFunction

A DtoFourierTransformFunction performs a Fourier transform on the input. Numeric input and complex vector output.

@experimental: Might change in future releases.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: FourierTransform

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.
windowLength DtoPositiveDuration - At time "t", frequency spectra are calculated for the time window from after "t - windowLength" to "t" using a step size given by mesh.
mesh DtoPositiveDuration - Time resolution of the source used in creation of this function. Mesh must not be bigger than window_length.

DtoPowerSpectrumFunction

A DtoPowerSpectrumFunction returns the logarithm of the power in some frequency band. Complex vector input and numeric output.

@experimental: Might change in future releases.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: PowerSpectrum

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
spectrum DtoFunctionId - FunctionId of the only input function.
minFrequency DtoNonNegativeInteger - The lowest frequency included in the frequency band. Frequencies are enumerated by successive integers starting with 0. Frequency k means a period of windowLength/k; (frequency 0 means mean over windowLenght); windowLength is given in the underlying DtoFourierTransformFunction.
maxFrequency DtoNonNegativeInteger - Exclusive upper bound of the frequency band. Frequencies are enumerated by successive integers starting with 0. Frequency k means a period of windowLength/k; (frequency 0 means mean over windowLenght); windowLength is given in the underlying DtoFourierTransformFunction.

DtoPhaseSpectrumFunction

A DtoPhaseSpectrumFunction represents a phase of a complex frequency spectrum. Complex vector input and numeric output (cycle 2 pi).

@experimental: Might change in future releases.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: PhaseSpectrum

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
spectrum DtoFunctionId - FunctionId of the only input function.
frequency DtoNonNegativeInteger - The frequency to which the phase belongs. Frequencies are enumerated by successive integers starting with 0. Frequency k means a period of windowLength/k; (frequency 0 means mean over windowLenght); windowLength is given in the underlying DtoFourierTransformFunction.

DtoSinFunction

The sin function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Sin

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoCosFunction

The cos function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Cos

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoScaleFunction

Returns the input multiplied by the factor. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Scale

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.
factor DtoFloat - -

DtoPrincipalDirectionFunction

A DtoPrincipalDirectionFunction is a linear combination of other functions. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: PrincipalDirection

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
coefficients DtoFeatureValue[] - The weights of the functions in the linear combination that form this function.

DtoLogisticFunction

The logistic function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Logistic

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoReluFunction

The rectified linear unit. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Relu

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoIdentityFunction

Identity function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Identity

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoMollifierFunction

A mollifier function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Mollifier

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoIdCategoryMapFunction

Assigns each input value a result based on a dictionary. DtoFunctionId input and float or string or boolean output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: IdCategoryMap

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function (whose return type is DtoFunctionId).
entries DtoIdCategoryEntry[] - The key-value-pairs of this dictionary (all entries should have the same value type)

DtoIdCategoryProbaMapFunction

Assigns each input value a result based on a dictionary and its probability.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: IdCategoryProbaMap

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
sources DtoFunctionId[] - FunctionIds of the only input functions.
entries DtoIdCategoryEntry[] - The key-value-pairs of this dictionary (all entries should have the same value type)

DtoIdCategoryEntry

Type: Object

Property Type Markers Description
id DtoFunctionId - The key.
category DtoAbstractCategory - The category the key is mapped to.

DtoSumFunction

Sum over all input functions. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Sum

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
summands DtoFunctionId[] - The values of these functions are used as input.

DtoMaxFunction

Returns the largest function value among the source functions at a given timestamp. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Max

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
sources DtoFunctionId[] - The values of these functions are used as input.

DtoArgMaxFunction

Returns the id of the function with the largest result. Multiple numeric inputs and DtoFunctionId output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: ArgMax

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
arguments DtoFunctionId[] - The values of these functions are used as input.

DtoProductFunction

Product over all input functions. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Product

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
factors DtoFunctionId[] - The values of these functions are used as input.

DtoConstantFunction

Returns the constant value provided. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Constant

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.
constant DtoFloat - -

DtoStepFunction

Step function. Returns 0 if argument value is negative else 1. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Step

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoLogarithmFunction

Natural logarithm function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Logarithm

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoExponentialFunction

Exponential function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: Exponential

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.

DtoGaussCdfFunction

Gaussian cummulative distribution function. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: GaussCdf

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
argument DtoFunctionId - FunctionId of the only input function.
mean DtoFloat - Mean of Gaussian.
std DtoFloat - Standard deviation of Gaussian.

DtoAggregatedNumericalFunction

Aggregating a numerical signal over the time window given by min and max lags. Numeric input and ouput.

@experimental: Might change in future releases.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: AggregatedNumerical

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
source DtoFunctionId - FunctionId of the only input function.
evalType DtoNumericalFunctionEvalType - Evalution type of aggregated numerical function
maxLag DtoNonNegativeDuration - Start of the time window.
minLag DtoNonNegativeDuration - End of the time window.
mesh DtoPositiveDuration - Time resolution of the source used in this function.

DtoNumericalFunctionEvalType

Available evalution types.

@experimental: Might change in future releases.

Type: String
Enum: MIN, MAX, RANGE, MEAN, SLOPE

DtoAggregatedCategoricalFunction

Aggregating a categorical signal over the time window given by min and max lags. The source of the function is DtoCategoryEqualsFunction. Numeric input and ouput.

@experimental: Might change in future releases.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: AggregatedCategorical

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
source DtoFunctionId - FunctionId of the only input function.
evalType DtoCategoricalFunctionEvalType - Evalution type of aggregated categorical function
maxLag DtoNonNegativeDuration - Start of the time window.
minLag DtoNonNegativeDuration - End of the time window.

DtoCategoricalFunctionEvalType

Available evalution types. Positive state is a state at which the source function (DtoCategoricalEqualsFunction) returns 1.0, i.e., true.

@experimental: Might change in future releases.

Type: String
Enum: POSITIVE_STATE_WAS_PRESENT, DURATION_OF_POSITIVE_STATES, POSITIVE_STATE_CHANGE_COUNT, DURATION_OF_LAST_POSITIVE_STATE

DtoAggregationType

Specify aggregated features to add.

Type: String
Enum: ALL, MIN, MAX, RANGE, MEAN, SLOPE, POSITIVE_STATE_WAS_PRESENT, DURATION_OF_POSITIVE_STATES, POSITIVE_STATE_CHANGE_COUNT, DURATION_OF_LAST_POSITIVE_STATE

DtoKernelModelFunction

A KernelModel is a kernel regressor fine-tuned with the training data. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: KernelModel

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - ID of the function.
kernelType DtoKernelType - Engine internal.
category DtoAbstractCategory - Engine internal.
scaleFactors DtoFeatureValue[] - Engine internal.
components DtoKernelModelComponent[] - Engine internal.
noise DtoFloat - Engine internal.

DtoKernelType

Engine internal.

Type: String
Enum: LAPLACE, GAUSSIAN, QUADRATIC, LINEAR, MATERN

DtoKernelModelComponent

Engine internal.

Type: Object

Property Type Markers Description
controlPoint DtoFeatureValue[] - Engine internal.
coefficient DtoFloat - Engine internal.
id DtoControlPointId optional Engine internal.
isSobolPoint Boolean optional Engine internal.

DtoFeatureValue

Feature value with featureId and its value.

Type: Object

Property Type Markers Description
feature DtoFunctionId - Engine internal.
value DtoFloat - Engine internal.

DtoTreeModelFunction

A TreeModel is a tree regressor fine-tuned with the training data. Numeric input and output.

Type: Object
Super-Types: DtoAbstractFunction
Discriminator: _type
Discriminator-Value: TreeModel

Property Type Markers Description
_type String - Type of this object.
id DtoFunctionId - Engine internal.
sources DtoFunctionId[] - Engine internal.
tree DtoTreeNode[] - Engine internal.
root DtoTreeNodeId - Engine internal.

DtoTreeNode

Engine internal.

Type: Object

Property Type Markers Description
id DtoTreeNodeId - Engine internal.
parent DtoTreeNodeId optional Engine internal,
children DtoTreeNodeId[] - Engine internal.
predicate DtoPredicate optional Engine internal.
labelMean DtoFloat - Engine internal.
count DtoNonNegativeInteger - Engine internal.
labelMeanInRoot DtoFloat - Engine internal.
rating DtoFloat - Engine internal.
pvalue DtoNonNegativeFloat optional Engine internal.

DtoPredicate

Engine internal.

Type: Object

Property Type Markers Description
sourceFunction DtoFunctionId - Engine internal.
min DtoFloat optional Engine internal.
max DtoFloat optional Engine internal.

DtoProducer

Identifying information on the engine.

Type: Object

Property Type Markers Description
name String - Name of the engine.
version String - Engine version.

DtoAbstractError

Base error type, generated by the engine.

@abstract

Type: Object
Sub-Types: DtoTargetSignalNotFoundError, DtoTargetSignalLowQualityError, DtoTargetSignalDataTypeUnexpectedError, DtoTargetSignalTooManyCategoriesError, DtoSignalNotFoundError, DtoSignalDataTypeUnexpectedError, DtoSignalInterpreterAmbiguousError, DtoOscillatorySignalInterpretationFailure, DtoColumnNotFoundError, DtoColumnDataTypeUnexpectedError, DtoColumnInterpreterAmbiguousError, DtoWeightColumnNegativeValueError, DtoSignalIdAlreadyInUseError, DtoColumnIdAlreadyInUseError, DtoSegmentNotFoundError, DtoInferenceOutputTypeUnexpectedError, DtoInferenceDataTypeUnexpectedError, DtoInferenceDataPredecessorMissingError, DtoInferenceOutputTargetInterpreterTypeUnexpectedError, DtoDataConcurrentModificationError, DtoDataQuantityInsufficientError, DtoDataQualityInsufficientError, DtoHandleDanglingError, DtoHandleTypeUnexpectedError, DtoPointerForeignError, DtoPointerTypeUnexpectedError, DtoStringEncodingInvalidError, DtoExpressionSyntaxFailureError, DtoExpressionRuntimeFailureError, DtoExpressionResultDataTypeUnexpectedError, DtoLicenseServerCommunicationFailureError, DtoLicenseApiKeyNotFoundError, DtoLicenseInsufficientError, DtoIncrementalLearningModelCorruptedError, DtoIncrementalLearningDataQualityInsufficientError, DtoJsonParseFailureError, DtoJsonValidationFailureError, DtoInternalEngineFailureError, DtoArgumentValidationError
Discriminator: _type

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoErrorParam

Named parameters used in error messages.

Type: Object

Property Type Markers Description
key String - -
value Any - -

DtoTargetSignalNotFoundError

Failed to find target signal with ID {id}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: TargetSignalNotFound

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoTargetSignalLowQualityError

Signal with ID {id} cannot be used as target due to its low information quality. Error: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: TargetSignalLowQuality

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoTargetSignalDataTypeUnexpectedError

Target signal with ID {id} is expected to be any data type of {expected} but was of data type {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: TargetSignalDataTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoTargetSignalTooManyCategoriesError

Target signal with ID {id} of data type Float contains too many unique values: {numb_of_cats}. Categorical interpreter with target of data type Float allows maximally 42 unique values. If you want to use target nevertheless ingest with data type String.

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: TargetSignalTooManyCategories

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoSignalNotFoundError

Failed to find signal with ID {id}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: SignalNotFound

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoSignalDataTypeUnexpectedError

Signal with ID {id} is expected to be any data type of {expected} but was of data type {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: SignalDataTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoSignalInterpreterAmbiguousError

Signal with ID {id} has ambiguous interpreters

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: SignalInterpreterAmbiguous

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoOscillatorySignalInterpretationFailure

Unable to resolve oscillatory interpretation of signal {id} at time t {timestamp} due to too sparse data

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: OscillatorySignalInterpretationFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoColumnNotFoundError

Failed to find column with ID {id}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ColumnNotFound

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoColumnDataTypeUnexpectedError

Column with ID {id} is expected to be any data type of {expected} but was of data type {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ColumnDataTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoColumnInterpreterAmbiguousError

Column with ID {id} has ambiguous interpreters

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ColumnInterpreterAmbiguous

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoWeightColumnNegativeValueError

Weight column with ID {id} has negative value in row with ID {row_id}. All weights must be >=0.

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: WeightColumnNegative

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoSignalIdAlreadyInUseError

Signal ID {id} is already in use

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: SignalIdAlreadyInUse

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoColumnIdAlreadyInUseError

Column ID {id} is already in use

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ColumnIdAlreadyInUse

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoSegmentNotFoundError

Failed to find segment with ID {id}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: SegmentNotFound

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoInferenceOutputTypeUnexpectedError

Inference output specification is expected to be of data type {expected} but was of data type {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: InferenceOutputTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoInferenceDataTypeUnexpectedError

Inference data specification for signal with ID {id} is expected to be of data type {expected} but was of data type {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: InferenceDataTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoInferenceDataPredecessorMissingError

Inference data is expected to include information on signal {id} at or before timestamp {timestamp}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: InferenceDataPredecessorMissing

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoInferenceOutputTargetInterpreterTypeUnexpectedError

Inference output specification is expected to be of target interpreter type {expected} but was {actual}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: InferenceOutputTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoDataConcurrentModificationError

Failed to modify data with handle '{handle}' due to concurrent usage

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: DataConcurrentModification

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoDataQuantityInsufficientError

Data with handle '{handle}' does not contain any training signals

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: DataQuantityInsufficient

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoDataQualityInsufficientError

Data with handle '{handle}' does not contain any training signals after data removal

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: DataQualityInsufficient

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoHandleDanglingError

Failed to dereference handle '{handle}'

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: HandleDangling

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoHandleTypeUnexpectedError

Handle '{handle}' is expected to be of type '{expected}' but was of type '{actual}'

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: HandleTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoPointerForeignError

Pointer was not created by this engine instance

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: PointerForeign

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoPointerTypeUnexpectedError

Pointer has unexpected type

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: PointerTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoStringEncodingInvalidError

Pointer failed to be decoded as string: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: StringEncodingInvalid

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoExpressionSyntaxFailureError

Failed to compile expression {expression}: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ExpressionSyntaxFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoExpressionRuntimeFailureError

Failed to evaluate expression {expression} at timestamp '{timestamp}': {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ExpressionRuntimeFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoExpressionResultDataTypeUnexpectedError

Result of expression {expression} is expected to be of data type {expected} but was of type {actual} at timestamp '{timestamp}'

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ExpressionResultDataTypeUnexpected

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoLicenseServerCommunicationFailureError

Failed to communicate with license server: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: LicenseServerCommunicationFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoLicenseApiKeyNotFoundError

Failed to find license api key

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: LicenseApiKeyNotFound

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoLicenseInsufficientError

License terms insufficient

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: LicenseInsufficient

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoIncrementalLearningModelCorruptedError

DtoIncremental data does not match remaining model data: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: IncrementalLearningModelCorrupted

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoIncrementalLearningDataQualityInsufficientError

Insufficient data quality of signals at label timestamps

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: IncrementalLearningDataQualityInsufficient

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoJsonParseFailureError

Failed to parse json: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: JsonParseFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoJsonValidationFailureError

Failed to validate json: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: JsonValidationFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoInternalEngineFailureError

Internal engine failure: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: InternalEngineFailure

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoArgumentValidationError

Failed to validate argument: {error}

Type: Object
Super-Types: DtoAbstractError
Discriminator: _type
Discriminator-Value: ArgumentValidationError

Property Type Markers Description
_type String - Type discriminator.
message String - Error message.
details DtoErrorParam[] - List of named parameters used in this error's message.

DtoAbstractCategory

@abstract

Type: Object
Sub-Types: DtoStringCategory, DtoFloatCategory, DtoBooleanCategory
Discriminator: _type

Property Type Markers Description
_type String - Type discriminator

DtoStringCategory

Type: Object
Super-Types: DtoAbstractCategory
Discriminator: _type
Discriminator-Value: String

Property Type Markers Description
_type String - Type discriminator
value String - -

DtoFloatCategory

Type: Object
Super-Types: DtoAbstractCategory
Discriminator: _type
Discriminator-Value: Float

Property Type Markers Description
_type String - Type discriminator
value DtoFloat - -

DtoBooleanCategory

Type: Object
Super-Types: DtoAbstractCategory
Discriminator: _type
Discriminator-Value: Boolean

Property Type Markers Description
_type String - Type discriminator
value Boolean - -

DtoAbstractColumnValue

@abstract

Type: Object
Sub-Types: DtoStringColumnValue, DtoFloatColumnValue, DtoBooleanColumnValue
Discriminator: _type

Property Type Markers Description
_type String - Type discriminator

DtoStringColumnValue

Type: Object
Super-Types: DtoAbstractColumnValue
Discriminator: _type
Discriminator-Value: String

Property Type Markers Description
_type String - Type discriminator
value String - -

DtoFloatColumnValue

Type: Object
Super-Types: DtoAbstractColumnValue
Discriminator: _type
Discriminator-Value: Float

Property Type Markers Description
_type String - Type discriminator
value DtoFloat - -

DtoBooleanColumnValue

Type: Object
Super-Types: DtoAbstractColumnValue
Discriminator: _type
Discriminator-Value: Boolean

Property Type Markers Description
_type String - Type discriminator
value Boolean - -

DtoSymmetricMatrix

Type: Object

Property Type Markers Description
rows DtoPositiveInteger - -
entries DtoFloat[] - -

DtoSymmetricBlockDiagonalMatrix

Type: Object

Property Type Markers Description
entries DtoSymmetricMatrix[] - -

DtoTime

Type: Number
Restrictions: int64, >= 0.0

DtoSegmentId

Type: Number
Restrictions: int64

DtoSignalId

Type: String
Restrictions: size >= 1

DtoColumnId

Type: String
Restrictions: size >= 1

DtoClusterId

Type: Number
Restrictions: int32, >= 0.0

DtoControlPointId

Type: Number
Restrictions: int32, >= 0.0

DtoExpression

Type: String
Restrictions: size >= 1

DtoPositiveDuration

Type: Number
Restrictions: int64, >= 1.0

DtoNonNegativeDuration

Type: Number
Restrictions: int64, >= 0.0

DtoPositiveInteger

Type: Number
Restrictions: int32, >= 1.0

DtoNonNegativeInteger

Type: Number
Restrictions: int32, >= 0.0

DtoFloat

Type: Number
Restrictions: double

DtoNonNegativeFloat

Type: Number
Restrictions: double, >= 0.0

DtoPositiveFloat

Type: Number
Restrictions: double, >= 0.0

DtoFunctionId

Type: Number
Restrictions: int64, >= 0.0

DtoTreeNodeId

Type: Number
Restrictions: int64, >= 0.0

DtoCorrelation

Type: Number
Restrictions: double, >= 0.0, <= 1.0

DtoPercentage

Type: Number
Restrictions: double, >= 0.0, <= 1.0

DtoUuid

A version 4 Uuid.

Type: String
Restrictions: exp = [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}

DtoAnalysisConfig

Necessary input configuration for an response analysis.

Type: Object

Property Type Markers Description
dataFilter DtoTabularDataFilter optional, default: {} Restrictions on the data used. Determines which columns to use.
target DtoTargetConfig - Information guiding the response analysis.
columns DtoColumnConfig[] optional, default: [] Configures the interpretation of the input columns. Any comlumn without configuration is interpreted as categorical data. Multiple entries for a single column are not allowed.
strategy DtoStrategy optional, default: {} Rules to limit the recordSet generation.
dev Any optional Unstable and undocumented configuration options. Developers only.

DtoTargetConfig

Information guiding the response analysis.

Type: Object

Property Type Markers Description
kpi DtoColumnId - ID of the KPI column.
interest DtoInterest - Are you interested in sets with especially low or high weighted mean KPI.
weight DtoColumnId optional If this is present, the weighted mean KPI of a set of records will be used to guide this analysis (i.e. Sum(KPI(record) * weight(record)) / Sum(weight(record))); otherwise the plain mean of the KPIs of a set of records is used.

DtoInterest

TODO

Type: String
Enum: LOW_KPI, HIGH_KPI

DtoStrategy

Rules to limit the generation of further recordSets.

Type: Object

Property Type Markers Description
minimalFractionOfRecords DtoPercentage optional, default: 0.01 A parent node will stop splitting if any of its child nodes contains less than this fraction of all records.

DtoAnalysisReport

Output of a response analysis.

Type: Object

Property Type Markers Description
producer DtoProducer - Information on the engine this object was built with.
config DtoAnalysisConfig - Input configuration that resulted in this.
recordSets DtoRecordSet[] - All identified relevant recordSets, including the population itself. They form a tree of sub sets.

DtoRecordSet

A set of records, defined by a parent (superset), and one additional predicate.

Type: Object

Property Type Markers Description
id DtoRecordSetId - Unique identifier among all RecordSets.
predicate DtoAbstractPredicate - Splitting property to arrive at current set from parent. A record is in this set if and only if it is in the parent set and fulfills this predicate.
parent DtoRecordSetId optional Id of the direct superset. The superset is filtered with the predicate to obtain this set.
size DtoPositiveInteger - Number of records in this set.
weightedMeanKpi DtoFloat - Weighted mean KPI aggregated over all records in this set.
weightedMeanKpiInRoot DtoFloat - Weighted mean KPI aggregated over ALL records fulfilling the predicate (not only those that are also in the parent).

DtoAbstractPredicate

A property that each record either fulfills or does not fulfill.

@abstract

Type: Object
Sub-Types: DtoRootPredicate, DtoCategorySetPredicate, DtoNumericalRangePredicate
Discriminator: _type

Property Type Markers Description
_type String - Type of this object.

DtoRootPredicate

Constant TRUE, i.e. every record fulfills this predicate.

Type: Object
Super-Types: DtoAbstractPredicate
Discriminator: _type
Discriminator-Value: Root

Property Type Markers Description
_type String - Type of this object.

DtoCategorySetPredicate

Restricts the (categorical) value of a column to a set of allowed categories or its complement.

Type: Object
Super-Types: DtoAbstractPredicate
Discriminator: _type
Discriminator-Value: CategorySet

Property Type Markers Description
_type String - Type of this object.
column DtoColumnId - ID of the column whose value is tested.
categorySet DtoAbstractColumnValue[] - If the column value is contained in (the complement of) this set, the predicate evaluates to true, false otherwise.
complement Boolean optional, default: false If true, this predicate evaluates to true only for values NOT IN the categorySet, if false it evaluates to true only for values IN the categorySet.

DtoNumericalRangePredicate

Restricts the (numerical) value of a column to an interval.

Type: Object
Super-Types: DtoAbstractPredicate
Discriminator: _type
Discriminator-Value: NumericalRange

Property Type Markers Description
_type String - Type of this object.
column DtoColumnId - ID of the column whose value is tested.
min DtoFloat optional Minimal value of this range. If absent the range is unbounded towards negative infinity.
max DtoFloat optional Maximal value of this range. If absent the range is unbounded towards positive infinity.
includeMin Boolean optional, default: true The minimal value of this range is part of the range.
includeMax Boolean optional, default: false The maximal value of this range is part of the range.

DtoRecordSetId

Type: Number
Restrictions: int64, >= 0.0