Download OpenAPI specification:Download
For a high-level understanding of the concepts of this engine, please have a look at the Constraint Navigator User Guide.
The following is a description how to setup and configure this service. All configuration classes are described here.
Failures of the application can lead to following errors:
A request to get a deployed model of a certain inference id
id required | string |
{- "functions": [
- {
- "_type": "string",
- "id": 0,
- "signal": "string"
}
], - "inferenceDataSpecification": {
- "signals": [
- {
- "_type": "string",
- "signal": "string",
- "dataType": "BOOLEAN",
- "endLag": 0,
- "startLag": 0
}
]
}, - "modelSpecifications": [
- {
- "model": "string",
- "resultFunction": 0,
- "mean": 0,
- "std": 0
}
], - "features": [
- {
- "feature": 0,
- "mean": 0,
- "std": 0,
- "min": 0,
- "max": 0
}
]
}
A request to get inferences of specific timestamps of a certain inference id
id required | string |
timestamps required | Array of integers <int64> (DtoTime) [ items <int64 > >= 0 ] The timestamps the inference is desired at |
The inference data, containing a certain history before each inference timestamp as defined in the model's inference data specification
{- "_type": "string",
- "dataPoints": [
- {
- "timestamp": 0,
- "cost": {
- "costType": "string",
- "value": 0
}, - "constraints": [
- {
- "model": "string",
- "value": 0
}
]
}
]
}
A request to get inferences of specific timestamps of a certain inference id with next normal values
id required | string |
timestamps required | Array of integers <int64> (DtoTime) [ items <int64 > >= 0 ] The timestamps the inference is desired at |
The inference data, containing a certain history before each inference timestamp as defined in the model's inference data specification
{- "_type": "string",
- "dataPoints": [
- {
- "timestamp": 0,
- "cost": {
- "costType": "string",
- "value": 0,
- "nextNormalValue": 0
}, - "constraints": [
- {
- "model": "string",
- "value": 0,
- "nextNormalValue": 0
}
], - "features": [
- {
- "feature": 0,
- "value": 0,
- "nextNormalValue": 0,
- "rating": 0
}
]
}
]
}