Right now, if you try to unmarshall a list of elements (such as List<String>, it will be interpreted as [ELEMENT1, ELEMENT2]. This seems to be against how the spec generally works. Examples are distribution codes for 1099R where it's a basic type, with an unbounded number of elements.
Updated some tests, so feel pretty comfortable with the change, but if we want to talk more through it I'm happy to have that conversation!
Right now, if you try to unmarshall a list of elements (such as
List<String>
, it will be interpreted as[ELEMENT1, ELEMENT2]
. This seems to be against how the spec generally works. Examples are distribution codes for 1099R where it's a basic type, with an unbounded number of elements.Updated some tests, so feel pretty comfortable with the change, but if we want to talk more through it I'm happy to have that conversation!
Pretty much it can be summed up as I think that:
Should be represented as:
vs
<TESTELEMENT>[test, test 2]</TESTELEMENT>