Using the REST api, I sent a JSON object with
{ query:"...",time_precision:"ms"}
I get time stamps with different precision, this is making it hard for me to parse the time!
Is there a way to keep the output time format consistent?
I get different time precision in the output (e.g., 2019-12-02T00:00:20.168999936Z
or 2019-12-02T00:00:20Z
)
I tried changing the dialect
but that had no effect.
dialect={
"encoding": "utf-8",
"lineTerminators": ["\r\n", "\n"],
"quoteChar": "\"",
"doubleQuote": True,
"skipRows": 0,
"commentPrefix": "#",
"header": True,
"headerRowCount": 1,
"dateTimeFormat": "RFC3339",
"delimiter": ",",
"skipColumns": 1,
"skipBlankRows": True,
"skipInitialSpace": True,
"trim": True
}