{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OlapHistoryValuesByTimestamps", "required": [ "timestamps", "values" ], "type": "object", "properties": { "timestamps": { "type": "array", "description": "Timestamps of historical statistics", "items": { "type": "integer", "format": "int64", "description": "Unix epoch of historical statistics" } }, "values": { "type": "array", "description": "Values of historical statistics", "items": { "type": "number", "description": "Value of historical statistics", "format": "bigdecimal" } } } }