<xs:complexType name="TransactionType">
<xs:sequence>
<xs:element name="TransactionDetails" type="trans:TransactionDetailsType" />
<xs:element name="Properties" type="trans:PropertiesType" maxOccurs="unbounded" />
<xs:element name="Participants" type="trans:ParticipantsType" maxOccurs="unbounded" />
<xs:element name="Financing" type="trans:FinancingType" minOccurs="0" />
<xs:element name="KeyDates" type="trans:KeyDatesType" minOccurs="0" />
<xs:element name="Documents" type="trans:DocumentsType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="ServiceOrders" type="trans:ServiceOrdersType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="Tasks" type="trans:TasksType" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required" />
<xs:attribute name="id" type="xs:string" use="required" />
<xs:attribute name="status" use="required">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="Open" />
<xs:enumeration value="Complete" />
<xs:enumeration value="Cancelled" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="systemId" type="commons:system-id" use="optional">
<xs:annotation>
<xs:documentation>
An identifier of the system that a participant
'belongs' to when the event involves more than
one system.
</xs:documentation>
<xs:appinfo>
<retsid>
</retsid>
</xs:appinfo>
</xs:annotation>
</xs:attribute>
</xs:complexType>
|