- https://purl.semanticip.org/linked-data/sdmx/ML/ResolvePeriodType
TTL - rdfs:Datatype
- Resolve Period Type
- simpleType
ResolvePeriodType defines an enumeration of how date periods should be resolved.
- SDMXStructureStructureMappings.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ResolvePeriodType">
<xs:annotation>
<xs:documentation>ResolvePeriodType defines an enumeration of how date periods should be resolved.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="startOfPeriod" />
<xs:enumeration value="endOfPeriod" />
<xs:enumeration value="midPeriod" />
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"startOfPeriod"xsd:string
"endOfPeriod"xsd:string
"midPeriod"xsd:string
) ]
)