StatusType
- https://purl.semanticip.org/linked-data/sdmx/ML/registry/StatusType
TTL - rdfs:Datatype
- Status Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/registry
- registry
- 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>
- xsd:NMTOKEN
owl:withRestrictions (
[ xsd:enumeration (
"Success"xsd:NMTOKEN
"Warning"xsd:NMTOKEN
"Failure"xsd:NMTOKEN
) ]
)