I think the simplest solution is: Change this: --------------------------------------------------------------------------- <xs:element name="eventDateTime" type="dateType" /> ......... <xs:simpleType name="dateType"> <xs:union memberTypes="xs:date xs:dateTime" /> </xs:simpleType> ............................................................................ .............................. to This: --------------------------------------------------------------------------- <xs:element name="eventDateTime"> <xs:simpleType> <xs:union memberTypes="xs:date xs:dateTime" /> </xs:simpleType> </xs:element> ............................................................................ ............................. And correspondingly for the other occurence. --Ray