Era.Common.DataDefinition.Reports.Report_Data

Description

Data of the generated report.

Properties

Name JsonSchemaType Description
apply_range_filter boolean For internal use only.
columns array of references to Era.Common.DataDefinition.Reports.Report_Data_Column Individual columns with data.
end_row_index integer In case this is not a full report, only some selected rows, this is the ending row index of the data. Currently, server does not provide partial reports.
incremental boolean Copy of the [incremental] flag from [ReportTemplate] used to generate the report.
required_sorting boolean For internal use only.
sorting array of references to Era.Common.DataDefinition.Reports.ColumnSorting Sorting, which was used for the data.
start_row_index integer In case this is not a full report, only some selected rows, this is the starting row index of the data. Currently, server does not provide partial reports.
total_row_count integer Row count of the full report data (even if this is only a part of the original data, total_row_count contains information about the original report, not about the part). Currently, server does not provide partial reports.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Reports.Report

JsonSchema

{
    "title": "Era.Common.DataDefinition.Reports.Report_Data",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Reports.Report_Data"
    ],
    "properties": {
        "Era.Common.DataDefinition.Reports.Report_Data": {
            "$ref": "#/definitions/Report_Data"
        }
    },
    "definitions": {
        "Report_Data": {
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "apply_range_filter": {
                    "type": "boolean"
                },
                "columns": {
                    "type": "array",
                    "items": [
                        {
                            "$ref": "Era.Common.DataDefinition.Reports.Report_Data_Column#/definitions/Report_Data_Column"
                        }
                    ]
                },
                "end_row_index": {
                    "type": "integer"
                },
                "incremental": {
                    "type": "boolean"
                },
                "required_sorting": {
                    "type": "boolean"
                },
                "sorting": {
                    "type": "array",
                    "items": [
                        {
                            "$ref": "Era.Common.DataDefinition.Reports.ColumnSorting#/definitions/ColumnSorting"
                        }
                    ]
                },
                "start_row_index": {
                    "type": "integer"
                },
                "total_row_count": {
                    "type": "integer"
                }
            }
        }
    }
}