Era.Common.DataDefinition.Trigger.TriggerThrottle_UniqueValues
Description
Configuration for: Allow if [count] events with unique [symbolID] symbol values arrive
(usable only for triggers providing symbols as event data - e.g. EventLog trigger).
Properties
Dual message (request/response)
No dual message.Referenced in messages
Era.Common.DataDefinition.Trigger.TriggerThrottle
JsonSchema
{
"title": "Era.Common.DataDefinition.Trigger.TriggerThrottle_UniqueValues",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Trigger.TriggerThrottle_UniqueValues"
],
"properties": {
"Era.Common.DataDefinition.Trigger.TriggerThrottle_UniqueValues": {
"$ref": "#/definitions/TriggerThrottle_UniqueValues"
}
},
"definitions": {
"TriggerThrottle_UniqueValues": {
"additionalProperties": false,
"required": [
"count",
"symbolID",
"type"
],
"type": "object",
"properties": {
"count": {
"type": "integer"
},
"symbolID": {
"type": "integer"
},
"type": {
"enum": [
1,
2
]
}
}
}
}
}