<xsd:complexType name="RequestMessage" abstract="true">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type defining the basic content of a message that requests the receiver to perform some business operation determined by the message type and its content.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:restriction base="Message">
<xsd:sequence>
<xsd:element name="header" type="RequestMessageHeader">
<xsd:annotation>
<xsd:documentation xml:lang="en">Overrides the definition of header in the Message type to make it specific to RequestMessage instances.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:group ref="Validation.model" />
</xsd:sequence>
<xsd:attributeGroup ref="StandardAttributes.atts" />
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
|