BaseReportPeriodType
- https://purl.semanticip.org/linked-data/sdmx/ML/common/BaseReportPeriodType
TTL - rdfs:Datatype
- Base Report Period Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
BaseReportPeriodType is a simple type which frames the general pattern of a reporting period for validation purposes. This regular expression is only a general validation which is meant to validate the following structure [year]-[period][time zone]?. This type is meant to be derived from for further validation.
- SDMXCommon.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="BaseReportPeriodType">
<xs:annotation>
<xs:documentation>BaseReportPeriodType is a simple type which frames the general pattern of a reporting period for validation purposes. This regular expression is only a general validation which is meant to validate the following structure [year]-[period][time zone]?. This type is meant to be derived from for further validation.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="\d{4}\-([ASTQ]\d{1}|[MW]\d{2}|[D]\d{3})(Z|((\+|\-)\d{2}:\d{2}))?" />
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:pattern "
d{4}
-([ASTQ]
d{1}|[MW]
d{2}|[D]
d{3})(Z|((
+|
-)
d{2}:
d{2}))?" ]
)