I have a JSON array like this:
[
"0",
{
"number": 1,
"field": "value"
},
{
"number": 2,
"field": "value"
}
]
The first element to the array is a string.
Is it possible to deserialize it with FasterXML Jackson?
I know how to do it with different objects.
I need to use @JsonSubTypes
(Here is an example https://stackoverflow.com/a/38877862/2564509)
The problem with this array is that the first element is String type.