Era.Common.DataDefinition.Reports.Report_Rendering_Table

Description

Table rendering instructions.

Properties

Name JsonSchemaType Description
columns array of references to Era.Common.DataDefinition.Reports.Report_Rendering_Table_Column Columns, which should be displayed in the table.
row_limit integer Maximal number of rows to be displayed.
type_id enum of Era.Common.DataDefinition.Reports.Report_Rendering_TableType Type of the table to be displayed.

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Reports.Report_Rendering

JsonSchema

{
    "title": "Era.Common.DataDefinition.Reports.Report_Rendering_Table",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Reports.Report_Rendering_Table"
    ],
    "properties": {
        "Era.Common.DataDefinition.Reports.Report_Rendering_Table": {
            "$ref": "#/definitions/Report_Rendering_Table"
        }
    },
    "definitions": {
        "Report_Rendering_Table": {
            "additionalProperties": false,
            "required": [
                "type_id"
            ],
            "type": "object",
            "properties": {
                "columns": {
                    "type": "array",
                    "items": [
                        {
                            "$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Table_Column#/definitions/Report_Rendering_Table_Column"
                        }
                    ]
                },
                "row_limit": {
                    "exclusiveMaximum": true,
                    "exclusiveMinimum": true,
                    "maximum": 2147483647,
                    "minimum": 0,
                    "type": "integer"
                },
                "type_id": {
                    "enum": [
                        100,
                        101,
                        102,
                        103
                    ]
                }
            }
        }
    }
}