Era.Common.NetworkMessage.ConsoleApi.Groups.RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult

Description

Listing result.

Properties

Name JsonSchemaType Description
name string Node name.
nodeType enum of Era.Common.DataDefinition.StaticGroups.SynchronizationNodeType Node type.
path string Path where node is stored.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.NetworkMessage.ConsoleApi.Groups.RpcListSynchronizationNodesResponse

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Groups.RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Groups.RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Groups.RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult": {
            "$ref": "#/definitions/RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult"
        }
    },
    "definitions": {
        "RpcListSynchronizationNodesResponse_ListSynchronizationNodesSingleResult": {
            "additionalProperties": false,
            "required": [
                "name",
                "nodeType",
                "path"
            ],
            "type": "object",
            "properties": {
                "name": {
                    "type": "string"
                },
                "nodeType": {
                    "enum": [
                        1,
                        2,
                        3,
                        4,
                        5,
                        6
                    ]
                },
                "path": {
                    "type": "string"
                }
            }
        }
    }
}