Era.Common.DataDefinition.Reports.Report_Rendering

Description

Rendering instructions for the generated report.

Properties

Name JsonSchemaType Description
chart reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart Chart rendering instructions.
draw_chart boolean True if a chart should be displayed.
draw_columns_labels boolean Deprecated, do not use.
draw_table boolean True if a table should be displayed.
table reference to Era.Common.DataDefinition.Reports.Report_Rendering_Table Table rendering instructions.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Reports.Report
Era.Common.DataDefinition.Reports.ReportTemplate

JsonSchema

{
    "title": "Era.Common.DataDefinition.Reports.Report_Rendering",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Reports.Report_Rendering"
    ],
    "properties": {
        "Era.Common.DataDefinition.Reports.Report_Rendering": {
            "$ref": "#/definitions/Report_Rendering"
        }
    },
    "definitions": {
        "Report_Rendering": {
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "chart": {
                    "$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart#/definitions/Report_Rendering_Chart"
                },
                "draw_chart": {
                    "type": "boolean"
                },
                "draw_columns_labels": {
                    "type": "boolean"
                },
                "draw_table": {
                    "type": "boolean"
                },
                "table": {
                    "$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Table#/definitions/Report_Rendering_Table"
                }
            }
        }
    }
}