- https://purl.semanticip.org/linked-data/sdmx/ML/SeverityCodeType
TTL - Severity Code Type
- simpleType
Error indicates the status message corresponds to an error.
Warning indicates that the status message corresponds to a warning.
Information indicates that the status message corresponds to an informational message.- SDMXMessageFooter.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SeverityCodeType">
<xs:restriction base="xs:string">
<xs:enumeration value="Error">
<xs:annotation>
<xs:documentation>Error indicates the status message corresponds to an error.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Warning">
<xs:annotation>
<xs:documentation>Warning indicates that the status message corresponds to a warning.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Information">
<xs:annotation>
<xs:documentation>Information indicates that the status message corresponds to an informational message.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>