Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse

Description

Response to [RpcGetNotificationVariablesRequest]

Properties

Name JsonSchemaType Description
variable_format string Format of variable entered by the user, e.g. "${%0}", where %0 will be replaced by name taken from symbol definition.
variables array of references to Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse_Variable List of symbols usable in messages sent by event log notifications.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesRequest

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse": {
            "$ref": "#/definitions/RpcGetNotificationVariablesResponse"
        }
    },
    "definitions": {
        "RpcGetNotificationVariablesResponse": {
            "additionalProperties": false,
            "required": [
                "variable_format"
            ],
            "type": "object",
            "properties": {
                "variable_format": {
                    "type": "string"
                },
                "variables": {
                    "type": "array",
                    "items": [
                        {
                            "$ref": "Era.Common.NetworkMessage.ConsoleApi.TasksTriggers.RpcGetNotificationVariablesResponse_Variable#/definitions/RpcGetNotificationVariablesResponse_Variable"
                        }
                    ]
                }
            }
        }
    }
}