| Name | JsonSchemaType | Description |
|---|---|---|
| average | reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics | Not implemented yet, do not use. |
| chart_type | enum of Era.Common.DataDefinition.Reports.Report_Rendering_ChartType | Type of the chart to be displayed. |
| last_value | reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics | Not implemented yet, do not use. |
| maximum | reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics | Not implemented yet, do not use. |
| minimum | reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics | Not implemented yet, do not use. |
| trend | reference to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics | Not implemented yet, do not use. |
| x | array of references to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series | X series for the chart. Some charts allow multiple X series. |
| x_cord_label | reference to Era.Common.DataDefinition.Common.Label | Label for the X axis. |
| y | array of references to Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series | Y series for the chart. Some charts allow multiple Y series. |
| y_cord_label | reference to Era.Common.DataDefinition.Common.Label | Label for the Y axis. |
{
"title": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart"
],
"properties": {
"Era.Common.DataDefinition.Reports.Report_Rendering_Chart": {
"$ref": "#/definitions/Report_Rendering_Chart"
}
},
"definitions": {
"Report_Rendering_Chart": {
"additionalProperties": false,
"required": [
"chart_type"
],
"type": "object",
"properties": {
"average": {
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics#/definitions/Report_Rendering_Chart_Statistics"
},
"chart_type": {
"enum": [
100,
101,
102,
103,
104,
150,
151,
152,
200,
201,
202,
250,
251,
252,
253,
300,
301,
302,
350,
351,
352,
400,
401,
450,
500
]
},
"last_value": {
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics#/definitions/Report_Rendering_Chart_Statistics"
},
"maximum": {
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics#/definitions/Report_Rendering_Chart_Statistics"
},
"minimum": {
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics#/definitions/Report_Rendering_Chart_Statistics"
},
"trend": {
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Statistics#/definitions/Report_Rendering_Chart_Statistics"
},
"x": {
"type": "array",
"items": [
{
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series#/definitions/Report_Rendering_Chart_Series"
}
]
},
"x_cord_label": {
"$ref": "Era.Common.DataDefinition.Common.Label#/definitions/Label"
},
"y": {
"type": "array",
"items": [
{
"$ref": "Era.Common.DataDefinition.Reports.Report_Rendering_Chart_Series#/definitions/Report_Rendering_Chart_Series"
}
]
},
"y_cord_label": {
"$ref": "Era.Common.DataDefinition.Common.Label#/definitions/Label"
}
}
}
}
}