ValidValue

Description

Represents a valid value for an attribute. You must use this type with a select that has a value of multi. This type is used only when it is nested within a create task.

Example

Create a multi-select attribute

<create server="ramServer">
   <attribute>
      <name>Affected versions</name>
      <select>multi</select>
      <validValue>1.0</validValue>
      <validValue>1.1</validValue>
      <validValue>1.2</validValue>
      <validValue>2.0</validValue>
   </attribute>
</modify>