TextSearchOperatorType

Last modified by Artur K. on 2026/06/05 16:27

  

https://purl.semanticip.org/linked-data/sdmx/ML/structure/TextSearchOperatorType page_white_text TTL
rdfs:Datatype
Text Search Operator Type
http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
structure
simpleType

TextSearchOperatorType provides an enumeration of text search operators.

SDMXStructureConstraint.xsd

<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="TextSearchOperatorType">
  <xs:annotation>
   <xs:documentation>TextSearchOperatorType provides an enumeration of text search operators.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
   <xs:enumeration value="contains">
    <xs:annotation>
     <xs:documentation>The text being searched must contain the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
   <xs:enumeration value="startsWith">
    <xs:annotation>
     <xs:documentation>The text being searched must start with the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
   <xs:enumeration value="endsWith">
    <xs:annotation>
     <xs:documentation>The text being searched must end with the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
   <xs:enumeration value="doesNotContain">
    <xs:annotation>
     <xs:documentation>The text being searched cannot contain the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
   <xs:enumeration value="doesNotStartWith">
    <xs:annotation>
     <xs:documentation>The text being searched cannot start with the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
   <xs:enumeration value="doesNotEndWith">
    <xs:annotation>
     <xs:documentation>The text being searched cannot end with the supplied text.</xs:documentation>
    </xs:annotation>
   </xs:enumeration>
  </xs:restriction>
 </xs:simpleType>

 

xsd:string

owl:withRestrictions (
    [ xsd:enumeration (
        "contains"xsd:string
        "startsWith"
xsd:string
        "endsWith"xsd:string
        "doesNotContain"
xsd:string
        "doesNotStartWith"xsd:string
        "doesNotEndWith"
xsd:string
    ) ]
)

© Semantic R&D Group, 2026