complexType workResponseType
diagram wp_diagrams/wp_p1703.png
namespace http://api.wp.n2.tibco.com
type extension of Success
properties
base base:Success
children payloadModel workTypeDetail presentation workItem pageFlowDetail
attributes
Name  Type  Use  Default  Fixed  Annotation
isSuccessful  xs:boolean  optional      
documentation
Boolean value indicating whether the call to WorkPresentationService was successful.
source <xs:complexType name="workResponseType">
 
<xs:complexContent>
   
<xs:extension base="base:Success">
     
<xs:sequence>
       
<xs:element name="payloadModel" type="df:dataPayload" nillable="true" minOccurs="0">
         
<xs:annotation>
           
<xs:documentation>If the work item displays:

- a form: payloadModel contains the data payload for the specified work item.

- a pageflow: payloadModel is not used. (In this case, the data payload for the first page of the pageflow must be obtained separately by using a startPageFlow operation.)

</xs:documentation>
         
</xs:annotation>
       
</xs:element>
       
<xs:element name="workTypeDetail" nillable="true" minOccurs="0">
         
<xs:annotation>
           
<xs:documentation>Details of the work type associated with this work item.

</xs:documentation>
         
</xs:annotation>
         
<xs:complexType>
           
<xs:complexContent>
             
<xs:extension base="base:WorkType">
               
<xs:sequence>
                 
<xs:element name="dataModel" type="dm:DataModel" minOccurs="0">
                   
<xs:annotation>
                     
<xs:documentation>** PRIVATE API - Reserved for internal use **</xs:documentation>
                   
</xs:annotation>
                 
</xs:element>
               
</xs:sequence>
               
<xs:attribute name="typePiled" type="xs:boolean" use="required">
                 
<xs:annotation>
                   
<xs:documentation>Boolean value specifying whether this work type is a piled work type.</xs:documentation>
                 
</xs:annotation>
               
</xs:attribute>
               
<xs:attribute name="pilingLimit" type="xs:int">
                 
<xs:annotation>
                   
<xs:documentation>Maximum number of piled work items of this work type (pecified only or a piled work type).</xs:documentation>
                 
</xs:annotation>
               
</xs:attribute>
             
</xs:extension>
           
</xs:complexContent>
         
</xs:complexType>
       
</xs:element>
       
<xs:element name="presentation" nillable="true" minOccurs="0">
         
<xs:annotation>
           
<xs:documentation>If the work item displays:

- a form: presentation contains details of the form artifact associated with this work item.

- a pageflow: presentation is not used. (In this case, the form artifact details for the pageflow are contained in thePageFlowDetail element.)

</xs:documentation>
         
</xs:annotation>
         
<xs:complexType>
           
<xs:attribute name="type" use="required">
             
<xs:annotation>
               
<xs:documentation>Type of form artifact. One of:

- GWT_FORM
- GI_FORM
- PAGEFLOW
- CUSTOM_FORM
- FORM
</xs:documentation>
             
</xs:annotation>
             
<xs:simpleType>
               
<xs:restriction base="xs:string">
                 
<xs:enumeration value="GWT_FORM"/>
                 
<xs:enumeration value="GI_FORM"/>
                 
<xs:enumeration value="PAGEFLOW"/>
                 
<xs:enumeration value="CUSTOM_FORM"/>
                 
<xs:enumeration value="FORM"/>
               
</xs:restriction>
             
</xs:simpleType>
           
</xs:attribute>
           
<xs:attribute name="formIdenitifier" type="xs:string" use="optional">
             
<xs:annotation>
               
<xs:documentation>Identifier for the JSON form artifact to be used to display the data for the work item.
</xs:documentation>
             
</xs:annotation>
           
</xs:attribute>
           
<xs:attribute name="activityName" type="xs:string" use="optional">
             
<xs:annotation>
               
<xs:documentation>Name of the process activity from which the work item was generated.
</xs:documentation>
             
</xs:annotation>
           
</xs:attribute>
           
<xs:attribute name="version" type="xs:string">
             
<xs:annotation>
               
<xs:documentation>Version number of the form artifact.</xs:documentation>
             
</xs:annotation>
           
</xs:attribute>
         
</xs:complexType>
       
</xs:element>
       
<xs:element name="workItem" type="base:WorkItem" nillable="true" minOccurs="0">
         
<xs:annotation>
           
<xs:documentation>In a response to a:

- cancelWorkItem, closeWorkItem, openWorkItem or openNextWorkItem operation: Identifier of this work item.

- completeWorkItem operation: Identifier of the next work item, if this work item is part of a chained group or is a piled work item. (If it is not, workItem is not returned.)

</xs:documentation>
         
</xs:annotation>
       
</xs:element>
       
<xs:element name="pageFlowDetail" type="wp:pageFlowType" minOccurs="0">
         
<xs:annotation>
           
<xs:documentation>Details of the pageflow (if the work item displays a pageflow).</xs:documentation>
         
</xs:annotation>
       
</xs:element>
     
</xs:sequence>
   
</xs:extension>
 
</xs:complexContent>
</xs:complexType>

element workResponseType/payloadModel
diagram wp_diagrams/wp_p1704.png
type dataPayload
properties
minOcc 0
maxOcc 1
content complex
nillable true
children serializedPayload XmlPayload
attributes
Name  Type  Use  Default  Fixed  Annotation
payloadMode  payloadModeType    JSON    
documentation
Enumerated value defining the format of the data payload (JSON or XML).

If not specified, the default value is JSON.

(RSS is currently not supported.)
annotation
documentation
If the work item displays:

- a form: payloadModel contains the data payload for the specified work item.

- a pageflow: payloadModel is not used. (In this case, the data payload for the first page of the pageflow must be obtained separately by using a startPageFlow operation.)

source <xs:element name="payloadModel" type="df:dataPayload" nillable="true" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>If the work item displays:

- a form: payloadModel contains the data payload for the specified work item.

- a pageflow: payloadModel is not used. (In this case, the data payload for the first page of the pageflow must be obtained separately by using a startPageFlow operation.)

</xs:documentation>
 
</xs:annotation>
</xs:element>

element workResponseType/workTypeDetail
diagram wp_diagrams/wp_p1705.png
type extension of WorkType
properties
minOcc 0
maxOcc 1
content complex
nillable true
children dataModel
attributes
Name  Type  Use  Default  Fixed  Annotation
uid  xs:string  required      
documentation
Unique ID of the work type.
version  xs:string  required      
documentation
Version number of the work type.
typePiled  xs:boolean  required      
documentation
Boolean value specifying whether this work type is a piled work type.
pilingLimit  xs:int        
documentation
Maximum number of piled work items of this work type (pecified only or a piled work type).
annotation
documentation
Details of the work type associated with this work item.

source <xs:element name="workTypeDetail" nillable="true" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>Details of the work type associated with this work item.

</xs:documentation>
 
</xs:annotation>
 
<xs:complexType>
   
<xs:complexContent>
     
<xs:extension base="base:WorkType">
       
<xs:sequence>
         
<xs:element name="dataModel" type="dm:DataModel" minOccurs="0">
           
<xs:annotation>
             
<xs:documentation>** PRIVATE API - Reserved for internal use **</xs:documentation>
           
</xs:annotation>
         
</xs:element>
       
</xs:sequence>
       
<xs:attribute name="typePiled" type="xs:boolean" use="required">
         
<xs:annotation>
           
<xs:documentation>Boolean value specifying whether this work type is a piled work type.</xs:documentation>
         
</xs:annotation>
       
</xs:attribute>
       
<xs:attribute name="pilingLimit" type="xs:int">
         
<xs:annotation>
           
<xs:documentation>Maximum number of piled work items of this work type (pecified only or a piled work type).</xs:documentation>
         
</xs:annotation>
       
</xs:attribute>
     
</xs:extension>
   
</xs:complexContent>
 
</xs:complexType>
</xs:element>

attribute workResponseType/workTypeDetail/@typePiled
type xs:boolean
properties
use required
annotation
documentation
Boolean value specifying whether this work type is a piled work type.
source <xs:attribute name="typePiled" type="xs:boolean" use="required">
 
<xs:annotation>
   
<xs:documentation>Boolean value specifying whether this work type is a piled work type.</xs:documentation>
 
</xs:annotation>
</xs:attribute>

attribute workResponseType/workTypeDetail/@pilingLimit
type xs:int
annotation
documentation
Maximum number of piled work items of this work type (pecified only or a piled work type).
source <xs:attribute name="pilingLimit" type="xs:int">
 
<xs:annotation>
   
<xs:documentation>Maximum number of piled work items of this work type (pecified only or a piled work type).</xs:documentation>
 
</xs:annotation>
</xs:attribute>

element workResponseType/workTypeDetail/dataModel
diagram wp_diagrams/wp_p1706.png
type DataModel
properties
minOcc 0
maxOcc 1
content complex
children inputs outputs inouts
annotation
documentation
** PRIVATE API - Reserved for internal use **
source <xs:element name="dataModel" type="dm:DataModel" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>** PRIVATE API - Reserved for internal use **</xs:documentation>
 
</xs:annotation>
</xs:element>

element workResponseType/presentation
diagram wp_diagrams/wp_p1707.png
properties
minOcc 0
maxOcc 1
content complex
nillable true
attributes
Name  Type  Use  Default  Fixed  Annotation
type  derived by: xs:string  required      
documentation
Type of form artifact. One of:

- GWT_FORM
- GI_FORM
- PAGEFLOW
- CUSTOM_FORM
- FORM
formIdenitifier  xs:string  optional      
documentation
Identifier for the JSON form artifact to be used to display the data for the work item.
activityName  xs:string  optional      
documentation
Name of the process activity from which the work item was generated.
version  xs:string        
documentation
Version number of the form artifact.
annotation
documentation
If the work item displays:

- a form: presentation contains details of the form artifact associated with this work item.

- a pageflow: presentation is not used. (In this case, the form artifact details for the pageflow are contained in thePageFlowDetail element.)

source <xs:element name="presentation" nillable="true" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>If the work item displays:

- a form: presentation contains details of the form artifact associated with this work item.

- a pageflow: presentation is not used. (In this case, the form artifact details for the pageflow are contained in thePageFlowDetail element.)

</xs:documentation>
 
</xs:annotation>
 
<xs:complexType>
   
<xs:attribute name="type" use="required">
     
<xs:annotation>
       
<xs:documentation>Type of form artifact. One of:

- GWT_FORM
- GI_FORM
- PAGEFLOW
- CUSTOM_FORM
- FORM
</xs:documentation>
     
</xs:annotation>
     
<xs:simpleType>
       
<xs:restriction base="xs:string">
         
<xs:enumeration value="GWT_FORM"/>
         
<xs:enumeration value="GI_FORM"/>
         
<xs:enumeration value="PAGEFLOW"/>
         
<xs:enumeration value="CUSTOM_FORM"/>
         
<xs:enumeration value="FORM"/>
       
</xs:restriction>
     
</xs:simpleType>
   
</xs:attribute>
   
<xs:attribute name="formIdenitifier" type="xs:string" use="optional">
     
<xs:annotation>
       
<xs:documentation>Identifier for the JSON form artifact to be used to display the data for the work item.
</xs:documentation>
     
</xs:annotation>
   
</xs:attribute>
   
<xs:attribute name="activityName" type="xs:string" use="optional">
     
<xs:annotation>
       
<xs:documentation>Name of the process activity from which the work item was generated.
</xs:documentation>
     
</xs:annotation>
   
</xs:attribute>
   
<xs:attribute name="version" type="xs:string">
     
<xs:annotation>
       
<xs:documentation>Version number of the form artifact.</xs:documentation>
     
</xs:annotation>
   
</xs:attribute>
 
</xs:complexType>
</xs:element>

attribute workResponseType/presentation/@type
type restriction of xs:string
properties
use required
facets
Kind Value Annotation
enumeration GWT_FORM
enumeration GI_FORM
enumeration PAGEFLOW
enumeration CUSTOM_FORM
enumeration FORM
annotation
documentation
Type of form artifact. One of:

- GWT_FORM
- GI_FORM
- PAGEFLOW
- CUSTOM_FORM
- FORM
source <xs:attribute name="type" use="required">
 
<xs:annotation>
   
<xs:documentation>Type of form artifact. One of:

- GWT_FORM
- GI_FORM
- PAGEFLOW
- CUSTOM_FORM
- FORM
</xs:documentation>
 
</xs:annotation>
 
<xs:simpleType>
   
<xs:restriction base="xs:string">
     
<xs:enumeration value="GWT_FORM"/>
     
<xs:enumeration value="GI_FORM"/>
     
<xs:enumeration value="PAGEFLOW"/>
     
<xs:enumeration value="CUSTOM_FORM"/>
     
<xs:enumeration value="FORM"/>
   
</xs:restriction>
 
</xs:simpleType>
</xs:attribute>

attribute workResponseType/presentation/@formIdenitifier
type xs:string
properties
use optional
annotation
documentation
Identifier for the JSON form artifact to be used to display the data for the work item.
source <xs:attribute name="formIdenitifier" type="xs:string" use="optional">
 
<xs:annotation>
   
<xs:documentation>Identifier for the JSON form artifact to be used to display the data for the work item.
</xs:documentation>
 
</xs:annotation>
</xs:attribute>

attribute workResponseType/presentation/@activityName
type xs:string
properties
use optional
annotation
documentation
Name of the process activity from which the work item was generated.
source <xs:attribute name="activityName" type="xs:string" use="optional">
 
<xs:annotation>
   
<xs:documentation>Name of the process activity from which the work item was generated.
</xs:documentation>
 
</xs:annotation>
</xs:attribute>

attribute workResponseType/presentation/@version
type xs:string
annotation
documentation
Version number of the form artifact.
source <xs:attribute name="version" type="xs:string">
 
<xs:annotation>
   
<xs:documentation>Version number of the form artifact.</xs:documentation>
 
</xs:annotation>
</xs:attribute>

element workResponseType/workItem
diagram wp_diagrams/wp_p1708.png
type WorkItem
properties
minOcc 0
maxOcc 1
content complex
nillable true
attributes
Name  Type  Use  Default  Fixed  Annotation
id  xs:long  required      
documentation
Unique ID of the work item.
version  xs:long    -1    
documentation
Version number of the work item.
annotation
documentation
In a response to a:

- cancelWorkItem, closeWorkItem, openWorkItem or openNextWorkItem operation: Identifier of this work item.

- completeWorkItem operation: Identifier of the next work item, if this work item is part of a chained group or is a piled work item. (If it is not, workItem is not returned.)

source <xs:element name="workItem" type="base:WorkItem" nillable="true" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>In a response to a:

- cancelWorkItem, closeWorkItem, openWorkItem or openNextWorkItem operation: Identifier of this work item.

- completeWorkItem operation: Identifier of the next work item, if this work item is part of a chained group or is a piled work item. (If it is not, workItem is not returned.)

</xs:documentation>
 
</xs:annotation>
</xs:element>

element workResponseType/pageFlowDetail
diagram wp_diagrams/wp_p1709.png
type wp:pageFlowType
properties
minOcc 0
maxOcc 1
content complex
children wp:page-activity
attributes
Name  Type  Use  Default  Fixed  Annotation
id  xs:string  required      
documentation
ID of this pageflow.
name  xs:string  optional      
documentation
Name of this pageflow.
url  xs:string  required      
documentation
URL of this pageflow.
moduleName  xs:string  required      
documentation
Module name of this pageflow.
moduleVersion  xs:string  required      
documentation
Module version number of this pageflow.
annotation
documentation
Details of the pageflow (if the work item displays a pageflow).
source <xs:element name="pageFlowDetail" type="wp:pageFlowType" minOccurs="0">
 
<xs:annotation>
   
<xs:documentation>Details of the pageflow (if the work item displays a pageflow).</xs:documentation>
 
</xs:annotation>
</xs:element>

WSDL documentation generated by XMLSpy WSDL Editor http://www.altova.com/xmlspy