- https://purl.semanticip.org/linked-data/sdmx/ML/registry/QueryTypeType
TTL - rdfs:Datatype
- Query Type Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/registry
- registry
- simpleType
QueryType provides an enumeration of values which specify the objects in the result-set for a registry query.
- SDMXRegistryRegistration.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="QueryTypeType">
<xs:annotation>
<xs:documentation>QueryType provides an enumeration of values which specify the objects in the result-set for a registry query.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="DataSets">
<xs:annotation>
<xs:documentation>Only references data sets should be returned.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="MetadataSets">
<xs:annotation>
<xs:documentation>Only references to metadata sets should be returned.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="AllSets">
<xs:annotation>
<xs:documentation>References to both data sets and metadata sets should be returned.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
- xsd:NMTOKEN
owl:withRestrictions (
[ xsd:enumeration (
"DataSets"xsd:NMTOKEN
"MetadataSets"xsd:NMTOKEN
"AllSets"xsd:NMTOKEN
) ]
)