XML Schema Documentation

Complex Type: AdditionalData

[Table of contents]

Super-types: None
Sub-types: None
Name AdditionalData
Used by (from the same schema document) Complex Type Reason , Model Group Exception.model
Abstract no
Documentation Provides extra information not represented in the model that may be useful in processing the message i.e. diagnosing the reason for failure.
XML Instance Representation
<...>
<mimeType> MimeType </mimeType> [1]

'Indicates the type of media used to provide the extra information. mimeType is used to determine the software product(s) that can read the content. MIME Types are described in RFC 2046.'

Start Choice [1]
<string> xsd:string </string> [1]

'Provides extra information as string. In case the extra information is in XML format, a CDATA section must be placed around the source message to prevent its interpretation as XML content.'

<hexadecimalBinary> xsd:hexBinary </hexadecimalBinary> [1]

'Provides extra information as binary contents coded in hexadecimal.'

<base64Binary> xsd:base64Binary </base64Binary> [1]

'Provides extra information as binary contents coded in base64.'

End Choice
</...>
Diagram
Schema Component Representation
<xsd:complexType name="AdditionalData">
<xsd:sequence>
<xsd:element name="mimeType" type=" MimeType "/>
<xsd:choice>
<xsd:element name="string" type=" xsd:string "/>
<xsd:element name="hexadecimalBinary" type=" xsd:hexBinary "/>
<xsd:element name="base64Binary" type=" xsd:base64Binary "/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>