- https://purl.semanticip.org/linked-data/sdmx/ML/common/ReferencePeriodType
TTL - owl:Class
- Reference Period Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- complexType
Specifies the inclusive start and end times.
- SDMXCommon.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ReferencePeriodType">
<xs:annotation>
<xs:documentation>Specifies the inclusive start and end times.</xs:documentation>
</xs:annotation>
<xs:attribute name="startTime" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>The startTime attributes contains the inclusive start date for the reference period.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="endTime" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>The endTime attributes contains the inclusive end date for the reference period.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:startTime ;
owl:allValuesFrom xsd:dateTime
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:startTime ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:dateTime
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:endTime ;
owl:allValuesFrom xsd:dateTime
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:endTime ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:dateTime
] ;