- https://purl.semanticip.org/linked-data/sdmx/ML/common/MaxOccursNumberType
TTL - rdfs:Datatype
- Max Occurs Number Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
MaxOccursNumberType is a base type used to restrict an integer to be greater than 1, for the purpose of expressing the maximum number of occurrences of an object.
- SDMXCommon.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="MaxOccursNumberType">
<xs:annotation>
<xs:documentation>MaxOccursNumberType is a base type used to restrict an integer to be greater than 1, for the purpose of expressing the maximum number of occurrences of an object.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:nonNegativeInteger">
<xs:minInclusive value="1" />
</xs:restriction>
</xs:simpleType>
- xsd:nonNegativeInteger
owl:withRestrictions (
[ xsd:minInclusive "1"xsd:nonNegativeInteger ]
)