Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Responses → ProjectData
The ProjectData type holds the name and other information about a project in SBM. The ProjectData type parameters are listed below.
| Name | Type | Description | 
|---|---|---|
| project | ProjectIdentifier | The project that is returned. | 
| description | string | The description of the project. Derived from the TS_DESCRIPTION column in TS_PROJECTS. | 
The ProjectData type holds the ID, UUID, name and description used to describe a project. You can use GetSubmitProjects to retrieve the project data shown here.
The following XML snippet shows the ProjectData type in the return element of the GetSubmitProjects response.
<ae:GetSubmitProjectsResponse>
   <ae:return>
      <ae:project xsi:type="ae:ProjectIdentifier">
         <ae:displayName>IDM Project</ae:displayName>
         <ae:id>2</ae:id>
         <ae:uuid>0b87f347-a00c-4359-9c16-625e847bfdab</ae:uuid>
         <ae:fullyQualifiedName>Base Project||IDM Project</ae:fullyQualifiedName>
         <ae:internalName>TTT_ISSUES.IDM_PROJECT</ae:internalName>
      </ae:project>
      <ae:description/>
   </ae:return>
   <ae:return>
      <ae:project xsi:type="ae:ProjectIdentifier">
         <ae:displayName>Animation Pro</ae:displayName>
         <ae:id>6</ae:id>
         <ae:uuid>2ac5ef27-71da-4b07-ab7e-dddbc9c2d8c7</ae:uuid>
         <ae:fullyQualifiedName>Base Project||Base IDT Project||
         Software Development||Animation Pro</ae:fullyQualifiedName>
         <ae:internalName>TTT_ISSUES.ANIMATION_PRO</ae:internalName>
      </ae:project>
      <ae:description/>
   </ae:return>
   <ae:return>
      <ae:project xsi:type="ae:ProjectIdentifier">
         <ae:displayName>Image Builder</ae:displayName>
         <ae:id>8</ae:id>
         <ae:uuid>d1f727e2-9f70-4bee-afd5-bccaf0e71cda</ae:uuid>
         <ae:fullyQualifiedName>Base Project||Base IDT Project||
         Software Development||Image Builder</ae:fullyQualifiedName>
         <ae:internalName>TTT_ISSUES.IMAGE_BUILDER</ae:internalName>
      </ae:project>
      <ae:description/>
   </ae:return>
</ae:GetSubmitProjectsResponse>
 
    Copyright © 2007–2016 Serena Software, Inc. All rights reserved.