- https://purl.semanticip.org/linked-data/sdmx/ML/common/UnboundedCodeType
TTL - rdfs:Datatype
- Unbounded Code Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
UnboundedCodeType provides single textual value of "unbounded", for use in OccurentType.
- SDMXCommon.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="UnboundedCodeType">
<xs:annotation>
<xs:documentation>UnboundedCodeType provides single textual value of "unbounded", for use in OccurentType.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="unbounded">
<xs:annotation>
<xs:documentation>Object has no upper limit on occurrences.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"unbounded"xsd:string
) ]
)