<ST_Relation>
(Characteristic Relationship Types)
This simple type specifies the possible relationships between a characteristic's @name
and @value
attributes.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Equal to. |
|
Greater than or equal to. |
|
Greater than. |
|
Less than or equal to. |
|
Less than. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Relation">
<restriction base="xsd:string">
<enumeration value="ge"/>
<enumeration value="le"/>
<enumeration value="gt"/>
<enumeration value="lt"/>
<enumeration value="eq"/>
</restriction>
</simpleType>