blob: fa9ac1fe8d83040114c0b2a57e05ee03c7249b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:element name="ChooseWorkflow">
<xs:complexType>
<xs:sequence>
<xs:element name="WorkflowDefinitionName" type="xs:string">
<xs:annotation>
<xs:documentation>Give the name of the composite activity
description that you would like new instance of this description
to run.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WorkflowDefinitionVersion" type="xs:string">
<xs:annotation>
<xs:documentation>Give the version of this activity that you would
like to use.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
|