The most basic entity type in our domain. We require that there is a location open to enter violations, so that this information can be returned to the client.
| name | data type | type | namespace | min/max occurs | description |
|---|---|---|---|---|---|
| issueList | list of jiraIssue | element | 0/unbounded | ||
| name | string | element | 0/1 | ||
| percentComplete | int | element | 0/1 | ||
| releaseDate | dateTime | element | 0/1 | ||
| resolvedIssues | int | element | 0/1 | ||
| unresolvedIssues | int | element | 0/1 | ||
Properties inherited from baseEntity |
|||||
| violations | list of simpleViolation | element | 0/unbounded | A list of constraint violations, if any, that this object has. | |
Example
<jiraVersion>
<resolvedIssues>...</resolvedIssues>
<unresolvedIssues>...</unresolvedIssues>
<percentComplete>...</percentComplete>
<releaseDate>...</releaseDate>
<issueList>
<status>...</status>
<summary>...</summary>
<assigned>...</assigned>
<key>...</key>
<projectCode>...</projectCode>
<reporter>...</reporter>
<description>...</description>
<clientName>...</clientName>
<violations/>
</issueList>
<name>...</name>
<violations>
<propertyName>...</propertyName>
<failureMessage>...</failureMessage>
<stackTrace>...</stackTrace>
</violations>
</jiraVersion>