Era.Common.DataDefinition.Logs.LogSymbol

Description

Properties

Name JsonSchemaType Description
symbol_data reference to Era.Common.DataDefinition.Common.MultiDataType A multidata type. Because the symbol can be a variable type.
symbol_type integer The type of the symbol

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Logs.LogSymbolContainer

JsonSchema

{
    "title": "Era.Common.DataDefinition.Logs.LogSymbol",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Logs.LogSymbol"
    ],
    "properties": {
        "Era.Common.DataDefinition.Logs.LogSymbol": {
            "$ref": "#/definitions/LogSymbol"
        }
    },
    "definitions": {
        "LogSymbol": {
            "additionalProperties": false,
            "required": [
                "symbol_data",
                "symbol_type"
            ],
            "type": "object",
            "properties": {
                "symbol_data": {
                    "$ref": "Era.Common.DataDefinition.Common.MultiDataType#/definitions/MultiDataType"
                },
                "symbol_type": {
                    "type": "integer"
                }
            }
        }
    }
}