Era.ServerApi.ReportCSVResponse

Description

Response which contains report converted to CSV. All responses with report will be converted to ReportCSVResponse, if [enableReportConversionToCSV] is set.

Properties

Name JsonSchemaType Description
reportCSV string Generated CSV.

Dual message (request/response)

No dual message.

Referenced in messages

No references.

JsonSchema

{
    "title": "Era.ServerApi.ReportCSVResponse",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.ServerApi.ReportCSVResponse"
    ],
    "properties": {
        "Era.ServerApi.ReportCSVResponse": {
            "$ref": "#/definitions/ReportCSVResponse"
        }
    },
    "definitions": {
        "ReportCSVResponse": {
            "additionalProperties": false,
            "required": [
                "reportCSV"
            ],
            "type": "object",
            "properties": {
                "reportCSV": {
                    "type": "string"
                }
            }
        }
    }
}