I'm using kotlinx serialization with an API that h...
# serialization
z
I'm using kotlinx serialization with an API that heavily nests objects Is there anything to simplify this. Ideally I could just use jsonpath spec: https://goessner.net/articles/JsonPath/ and then simply annotate a field as
Copy code
@JsonPath("a.b.c.d")
val x: Int
Does anything like this already exist and if not would this be better as a core feature or a separate library
d