Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportFileRequest

Description

Initializes a file upload used for an aggregated import.

Properties

Name JsonSchemaType Description
export_type enum of Era.Common.DataDefinition.ExportImport.AggregatedExportType Type of the import. It has to be identical to an export type of the file used to import.
file_name string Name of the file.

Dual message (request/response)

Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportFileResponse

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportFileRequest",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportFileRequest"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.ExportImport.RpcAggregatedImportFileRequest": {
            "$ref": "#/definitions/RpcAggregatedImportFileRequest"
        }
    },
    "definitions": {
        "RpcAggregatedImportFileRequest": {
            "additionalProperties": false,
            "required": [
                "export_type",
                "file_name"
            ],
            "type": "object",
            "properties": {
                "export_type": {
                    "enum": [
                        0
                    ]
                },
                "file_name": {
                    "type": "string"
                }
            }
        }
    }
}