Maybe I am missing something fundamental here, but I have a simple test table:
CREATE TABLE test01.tupletest ( id int PRIMARY KEY, t frozen<tuple<timestamp, text, int>> )
I am easily able to add a row in cqlsh with the command
INSERT INTO test01.tupletest JSON '{"id":1, "t": ["2021-04-10", "", 0]}';
However, if I try to utilize the Stargate REST API, and send a payload of:
{"id":2,"t":["2021-04-10","",0]}
I get an error:
Bad request: Invalid Timestamp value: Text '2021-04-10' could not be parsed at index 10 (field at index 0 of Tuple '[2021-04-10, , 0]')