ValidityPeriodType
- https://purl.semanticip.org/linked-data/sdmx/ML/registry/ValidityPeriodType
TTL - owl:Class
- Validity Period Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/registry
- registry
- complexType
ValidityPeriodType specifies inclusive start and end-dates for the subscription period.
- SDMXRegistrySubscription.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ValidityPeriodType">
<xs:annotation>
<xs:documentation>ValidityPeriodType specifies inclusive start and end-dates for the subscription period.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="StartDate" type="xs:date">
<xs:annotation>
<xs:documentation>StartDate is an inclusive start date for the subscription.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EndDate" type="xs:date">
<xs:annotation>
<xs:documentation>EndDate is an inclusive end date for the subscription.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:StartDate ;
owl:allValuesFrom xsd:date
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:StartDate ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:date
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:EndDate ;
owl:allValuesFrom xsd:date
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:EndDate ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:date
] ;