Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportStateResponse

Description

State of a currently running import.

Properties

Name JsonSchemaType Description
execution_message string Description of import state, e.g. "Importing static groups".
execution_percentage integer State of import execution in percentages.
execution_state enum of Era.Common.DataDefinition.ExportImport.AggregatedImportExecutionState State of the import.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportStateRequest

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportStateResponse",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportStateResponse"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportStateResponse": {
            "$ref": "#/definitions/RpcAggregatedImportStateResponse"
        }
    },
    "definitions": {
        "RpcAggregatedImportStateResponse": {
            "additionalProperties": false,
            "required": [
                "execution_message",
                "execution_percentage",
                "execution_state"
            ],
            "type": "object",
            "properties": {
                "execution_message": {
                    "type": "string"
                },
                "execution_percentage": {
                    "type": "integer"
                },
                "execution_state": {
                    "enum": [
                        0,
                        1,
                        2,
                        3,
                        4,
                        5
                    ]
                }
            }
        }
    }
}