Choice tag in xsd is not supoorted in export mapping

0
I am trying to import the XML schema for my xsd translation but it is not supporting Choice tag as shown in below xsd.. Can you please tell me if there is other way to implement choice tags of xsd in Mendix. <xs:choice> <xs:element name="F20" type="F20_Type"> <xs:annotation> <xs:appinfo> <info:Tag value="20"/> </xs:appinfo> <xs:documentation source="Name" xml:lang="EN">Sender's</xs:documentation> </xs:annotation> </xs:element> </xs:choice>
asked
1 answers
0

Well if your choice is only 1 option long you could just make it optional by setting its minimalOccurence to 0.

answered