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