Era.Common.DataDefinition.Trigger.TriggerThrottle_Occurrences

Description

Configuration for: Allow every [count] occurrence (e.g. modulo [count] == 0).

Properties

Name JsonSchemaType Description
count integer Number of occurrences.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Trigger.TriggerThrottle

JsonSchema

{
    "title": "Era.Common.DataDefinition.Trigger.TriggerThrottle_Occurrences",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Trigger.TriggerThrottle_Occurrences"
    ],
    "properties": {
        "Era.Common.DataDefinition.Trigger.TriggerThrottle_Occurrences": {
            "$ref": "#/definitions/TriggerThrottle_Occurrences"
        }
    },
    "definitions": {
        "TriggerThrottle_Occurrences": {
            "additionalProperties": false,
            "required": [
                "count"
            ],
            "type": "object",
            "properties": {
                "count": {
                    "type": "integer"
                }
            }
        }
    }
}