QueryResultType
- https://purl.semanticip.org/linked-data/sdmx/ML/registry/QueryResultType
TTL - owl:Class
- Query Result Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/registry
- registry
- complexType
QueryResultType describes the structure of a query result for a single data source. Either a data result or metadata result is detailed, depending on the data source.
- SDMXRegistryRegistration.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="QueryResultType">
<xs:annotation>
<xs:documentation>QueryResultType describes the structure of a query result for a single data source. Either a data result or metadata result is detailed, depending on the data source.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice>
<xs:element name="DataResult" type="ResultType" />
<xs:element name="MetadataResult" type="ResultType" />
</xs:choice>
</xs:sequence>
<xs:attribute name="timeSeriesMatch" type="xs:boolean" use="required">
<xs:annotation>
<xs:documentation>The timeSeriesMatch attribute is true when the result is an exact match with the key found in the registry - that is, when the registered data source provides a matching key. It is set to false when the data source is registered with cube-region constraints, or in any other circumstance when it cannot be established that the sought-for keys have been exactly matched. This is always true when the resulting data source is the source of a metadata set.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:DataResult ;
owl:allValuesFrom sip-sdmx-ML-registry:ResultType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:DataResult ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML-registry:ResultType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:MetadataResult ;
owl:allValuesFrom sip-sdmx-ML-registry:ResultType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:MetadataResult ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML-registry:ResultType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:timeSeriesMatch ;
owl:allValuesFrom xsd:boolean
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:timeSeriesMatch ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:boolean
] ;