- https://purl.semanticip.org/linked-data/sdmx/ML/StatusType
TTL - Status Type
- simpleType
StatusType provides an enumeration of values that detail the status of queries or requests.
- SDMXRegistryBase.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StatusType">
<xs:annotation>
<xs:documentation>StatusType provides an enumeration of values that detail the status of queries or requests.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Success">
<xs:annotation>
<xs:documentation>Query or request successful.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Warning">
<xs:annotation>
<xs:documentation>Query or request successful, but with warnings.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Failure">
<xs:annotation>
<xs:documentation>Query or request not successful.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>