RangeOperatorType
- https://purl.semanticip.org/linked-data/sdmx/ML/structure/RangeOperatorType
TTL - rdfs:Datatype
- Range Operator Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- simpleType
RangeOperatorType provides an enumeration of range operators to be applied to an ordered value.
- SDMXStructureConstraint.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="RangeOperatorType">
<xs:annotation>
<xs:documentation>RangeOperatorType provides an enumeration of range operators to be applied to an ordered value.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="greaterThanOrEqual">
<xs:annotation>
<xs:documentation>(>=) - value must be greater than or equal to the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="lessThanOrEqual">
<xs:annotation>
<xs:documentation>(<=) - value must be less than or equal to the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="greaterThan">
<xs:annotation>
<xs:documentation>(>
- value must be greater than the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="lessThan">
<xs:annotation>
<xs:documentation>(<
- value must be less than the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"greaterThanOrEqual"xsd:string
"lessThanOrEqual"xsd:string
"greaterThan"xsd:string
"lessThan"xsd:string
) ]
)