- https://purl.semanticip.org/linked-data/sdmx/ML/DataSourceType
TTL - owl:Class
- Data Source Type
- complexType
DataSourceType specifies the properties of a data or metadata source. Either a simple data source, a queryable data source, or both must be specified.
- SDMXRegistryBase.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="DataSourceType">
<xs:annotation>
<xs:documentation>DataSourceType specifies the properties of a data or metadata source. Either a simple data source, a queryable data source, or both must be specified.</xs:documentation>
</xs:annotation>
<xs:choice maxOccurs="2">
<xs:element name="SimpleDataSource" type="xs:anyURI">
<xs:annotation>
<xs:documentation>SimpleDatasource describes a data source that is an SDMX-ML data or metadata message. It requires only the URL of the data.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="QueryableDataSource" type="QueryableDataSourceType">
<xs:annotation>
<xs:documentation>QueryableDatasource describes a data source that can be queried using the SDMX REST interfaces.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:complexType>
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:SimpleDataSource ;
owl:allValuesFrom xsd:anyURI
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:SimpleDataSource ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:anyURI
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:QueryableDataSource ;
owl:allValuesFrom sip-sdmx-ML:QueryableDataSourceType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:QueryableDataSource ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML:QueryableDataSourceType
] ;