Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics
Description
Not implemented yet, do not use. Reference to data column conraining statistical information to be displayed along the "normal" data. E.g. maximum/minimum baselines.
Properties
Name |
JsonSchemaType |
Description |
column_id |
integer |
Column containing the statistical information. If not present, formatting is done based on the column [column_id]. |
format |
reference to Era.Common.DataDefinition.Reports.Format |
Formatting of the statistical information. |
format_column_id |
integer |
Column, from which formatting information for the statistical data should be taken. |
Dual message (request/response)
No dual message.Referenced in messages
Era.Common.DataDefinition.Reports.Report_Rendering_Chart
JsonSchema
{
"title": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics"
],
"properties": {
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics": {
"$ref": "#/definitions/Report_Rendering_Chart_Statistics"
}
},
"definitions": {
"Report_Rendering_Chart_Statistics": {
"additionalProperties": false,
"required": [
"column_id"
],
"type": "object",
"properties": {
"column_id": {
"type": "integer"
},
"format": {
"$ref": "Era.Common.DataDefinition.Reports.Format#/definitions/Format"
},
"format_column_id": {
"type": "integer"
}
}
}
}
}