<xsd:complexType name="Approval">
<xsd:annotation>
<xsd:documentation xml:lang="en">A specific approval state in the workflow.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="type" type="xsd:normalizedString">
<xsd:annotation>
<xsd:documentation xml:lang="en">The type of approval (e.g. "Credit").</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="status" type="xsd:normalizedString">
<xsd:annotation>
<xsd:documentation xml:lang="en">The current state of approval (.e.g preapproved, pending approval, etc.)</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="approver" type="xsd:normalizedString" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The full name or identifiying ID of the relevant approver.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|