- https://purl.semanticip.org/linked-data/sdmx/ML/SeverityCodeType
TTL - rdfs:Datatype
- Severity Code Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/message/footer
- footer
- 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>
- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"Error"xsd:string
"Warning"xsd:string
"Information"xsd:string
) ]
)