blob: 9927231f23f68b8fb1141f051cb1134d3e4f2831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
|