Common Content for Data Engineering
- Common Content for Data Engineering 10.5.7
- All Products
You can change the JSON response in the following format:<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="xmlRoot"> <xs:complexType> <xs:all> <xs:element type="xs:byte" name="Age"/> <xs:element type="xs:string" name="FirstName"/> <xs:element type="xs:string" name="Likes" maxOccurs="unbounded" minOccurs="0"/> <xs:element type="xs:string" name="FamilyName"/> </xs:all> </xs:complexType> </xs:element> </xs:schema>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="xmlRoot"> <xs:complexType> <xs:choice maxOccurs="unbounded"> <xs:element type="xs:byte" name="Age"/> <xs:element type="xs:string" name="FirstName"/> <xs:element type="xs:string" name="Likes" /> <xs:element type="xs:string" name="FamilyName"/> </xs:choice> </xs:complexType> </xs:element> </xs:schema>