- https://purl.semanticip.org/linked-data/sdmx/ML/MessageType
TTL - complexType
MessageType is an abstract type which is used by all of the messages, to allow inheritance of common features. Every message consists of a mandatory header, followed by optional payload (which may occur multiple times), and finally an optional footer section for conveying error, warning, and informational messages.
- SDMXMessage.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="MessageType" abstract="true">
<xs:annotation>
<xs:documentation>MessageType is an abstract type which is used by all of the messages, to allow inheritance of common features. Every message consists of a mandatory header, followed by optional payload (which may occur multiple times), and finally an optional footer section for conveying error, warning, and informational messages.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Header" type="BaseHeaderType" />
<xs:any namespace="targetNamespace" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="footer:Footer" minOccurs="0" />
</xs:sequence>
</xs:complexType>