IBM BPM, V8.0.1, All platforms > Authoring services in Integration Designer > Developing monitor models > What are monitor models? > Monitor XML schema definition (monitor.xsd) > XML schema (monitor.xsd) description

ValueSpecificationType

ValueSpecificationType is an abstract class used where either an AssignmentListSpecification or an ExpressionSpecificationType can be used. An AssignmentListSpecification is used to set multiple output fields and an ExpressionSpecificationType is used to set a single output field.

Elements

Name Min-max Description
singleValue 1 - 1 An expression used to set a single output field.
assignments 1 - 1 An assignment list used to set multiple output fields.

Attributes

None

Restrictions

None

Schema definition

<xsd:complexType name="ValueSpecificationType" >
    <xsd:choice minOccurs="1" maxOccurs="1">
        <xsd:element name="singleValue" 
              type="mon:ExpressionSpecificationType"/>
        <xsd:element name="assignments" 
              type="mon:AssignmentListSpecificationType"/>
    </xsd:choice>
</xsd:complexType>

XML schema (monitor.xsd) description