SimpleOperatorType
- https://purl.semanticip.org/linked-data/sdmx/ML/structure/SimpleOperatorType
TTL - rdfs:Datatype
- Simple Operator Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- simpleType
SimpleOperatorType provides an enumeration of simple operators to be applied to any value.
- SDMXStructureConstraint.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SimpleOperatorType">
<xs:annotation>
<xs:documentation>SimpleOperatorType provides an enumeration of simple operators to be applied to any value.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="notEqual">
<xs:annotation>
<xs:documentation>(!=) - value must not be equal to the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="equal">
<xs:annotation>
<xs:documentation>(=) - value must be exactly equal to the value supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"notEqual"xsd:string
"equal"xsd:string
) ]
)