IdentifiableType
- https://purl.semanticip.org/linked-data/sdmx/ML/common/IdentifiableType
TTL - owl:Class
- Identifiable Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- complexType
IdentifiableType is an abstract base type for all identifiable objects.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="IdentifiableType" abstract="true">
<xs:annotation>
<xs:documentation>IdentifiableType is an abstract base type for all identifiable objects.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="AnnotableType">
<xs:sequence>
<xs:element ref="Link" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="id" type="IDType" use="optional">
<xs:annotation>
<xs:documentation>The id is the identifier for the object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="urn" type="UrnType" use="optional">
<xs:annotation>
<xs:documentation>The urn attribute holds a valid SDMX Registry URN (see SDMX Registry Specification for details).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="uri" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>The uri attribute holds a URI that contains a link to a resource with additional information about the object, such as a web page. This uri is not a SDMX message.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
rdfs:subClassOf sip-sdmx-ML-common:AnnotableType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Link ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:allValuesFrom sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:urn ;
owl:allValuesFrom sip-sdmx-ML-common:UrnType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:urn ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange sip-sdmx-ML-common:UrnType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:uri ;
owl:allValuesFrom xsd:anyURI
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:uri ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:anyURI
] ;