Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportStateResponse

Description

Returned state of a currently running aggregated export.

Properties

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

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportStateRequest

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportStateResponse",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportStateResponse"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedExportStateResponse": {
            "$ref": "#/definitions/RpcAggregatedExportStateResponse"
        }
    },
    "definitions": {
        "RpcAggregatedExportStateResponse": {
            "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
                    ]
                }
            }
        }
    }
}