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 | description |
|---|---|---|
| resolvedIssues | number | |
| unresolvedIssues | number | |
| percentComplete | number | |
| releaseDate | number | |
| issueList | array of JiraIssue | |
| name | string | |
Properties inherited from BaseEntity |
||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. |
Example
{
"resolvedIssues" : 12345,
"unresolvedIssues" : 12345,
"percentComplete" : 12345,
"releaseDate" : 12345,
"issueList" : [ {
"status" : "...",
"summary" : "...",
"assigned" : "...",
"key" : "...",
"projectCode" : "...",
"reporter" : "...",
"description" : "...",
"clientName" : "...",
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}, {
"status" : "...",
"summary" : "...",
"assigned" : "...",
"key" : "...",
"projectCode" : "...",
"reporter" : "...",
"description" : "...",
"clientName" : "...",
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
} ],
"name" : "...",
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}