Closed
Description
From what I understand it is not possible to use an XML document containing a simple type list like this one:
<xs:element name="root">
<xs:complexType>
<xs:sequence>
<xs:element name="list">
<xs:simpleType>
<xs:list itemType="xs:string" />
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
A valid xml is:
<root><list>value1 value2</list></root>
With Swagger it is only possible to represent an array
using a repeated XML element with an optional XML element wrapper. It would be nice to also support this