blob: 1fb62381971eaa19141b61390d931e535f370d1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?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>
|