How to write an XSD for a list with no wrapper element

inafrenzy

New Member
Is it possible to have \[code\]xsd:complexType\[/code\] contains \[code\]xsd:sequence\[/code\] and \[code\]xsd:element\[/code\]?\[code\]<xsd:complexType name="employeesType" mixed="true"> <xsd:sequence> <xsd:element name="employee" type="employeeType" maxOccurs="unbounded" minOccurs="0" /> </xsd:sequence> <!-- ERROR <xsd:element name="responseTime" type="responseTimeType"></xsd:element> --></xsd:complexType>\[/code\]
 
Back
Top