{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/gmx/json-schema/OhlcvCandle.json", "title": "OhlcvCandle", "properties": { "close": { "type": "string" }, "low": { "type": "string" }, "high": { "type": "string" }, "open": { "type": "string" }, "timestamp": { "type": "number", "format": "double" } }, "required": [ "close", "low", "high", "open", "timestamp" ], "type": "object" }