<this jb blog post> says &gt; The default serializ...
# serialization
l
this jb blog post says
The default serializer is based on an ISO 8601 string representation of a type and uses `toString()`/`parse()` to serialize and deserialize values
the linked wikipedia article lists
2021-05-29T17:42:42+00:00
as an example string so why do i get an exception here ?
e
2021-05-29T17:42:42+00:00
is not valid JSON
did you mean this?
Copy code
decodeFromString<Instant>("\"2021-05-29T17:42:42+00:00\"")
(or
""""2021-05-29T17:42:42+00:00""""
, same thing)
l
oops thanks