Hi I'm trying to write a JSONArray wrapper in JAVA that takes String variables date1Str, date2Str, and Status and wraps it into the format below. I know this is not a json format but is it possible to pass something like this using REST Client?
[
["2014-03-20T11:23:25.000-07:00","2014-03-20T11:23:25.000-07:00","Open"],
["2014-03-19T22:06:01.000-07:00","2014-03-19T22:06:01.000-07:00","Open"],
["2014-03-19T21:05:08.000-07:00","2014-03-19T21:05:34.000-07:00","In Progress"],
["2014-03-19T21:04:49.000-07:00","2014-03-19T21:14:56.000-07:00","Closed"]
]