- https://purl.semanticip.org/linked-data/sdmx/ML/StatusMessageType
TTL - Status Message Type
- complexType
StatusMessageType describes the structure of an error or warning message. A message contains the text of the message, as well as an optional language indicator and an optional code.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StatusMessageType">
<xs:annotation>
<xs:documentation>StatusMessageType describes the structure of an error or warning message. A message contains the text of the message, as well as an optional language indicator and an optional code.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Text" type="TextType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Text contains the text of the message, in parallel language values.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="code" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The code attribute holds an optional code identifying the underlying error that generated the message. This should be used if parallel language descriptions of the error are supplied, to distinguish which of the multiple error messages are for the same underlying error.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>