<xs:complexType name="EventType">
<xs:sequence>
<xs:element name="EventId" type="xs:string" minOccurs="1" />
<xs:element name="CreatedDateTime" type="commons:SecureDateTime" minOccurs="0" />
<xs:element name="StartDate" type="event:StartDate" minOccurs="0" />
<xs:element name="EndDate" type="event:EndDate" minOccurs="0" />
<xs:element name="Duration" type="event:Duration" />
<xs:element name="Category" type="xs:string" minOccurs="0" />
<xs:element name="Description" type="event:Description" minOccurs="0" />
<xs:element name="EventLocation" type="event:EventLocationType" minOccurs="0" />
<xs:element name="Organizer" type="commons:ContactablePerson" minOccurs="0" />
<xs:element name="Priority" type="event:Priority" minOccurs="0" />
<xs:element name="Recurrence" type="event:Recurrence" minOccurs="0" />
<xs:element name="Status" type="event:Status" minOccurs="0" />
<xs:element name="URL" type="commons:URL" minOccurs="0" />
<xs:element name="Attendees" type="event:Attendees" minOccurs="0" />
<xs:element name="Comment" type="event:Comment" minOccurs="0" />
<xs:element name="Contact" type="commons:ContactablePerson" minOccurs="0" />
<xs:element name="ModificationTimestamp" type="commons:ModificationTimestamp" />
</xs:sequence>
<xs:attribute name="systemId" type="commons:system-id" use="required" />
</xs:complexType>
|