Service Level Agreement Limit Model
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single SLA. |
project_id | int | Identifier of Project | Does hold a reference to the Project. |
time_limit_in_hours | int | Limit in hours | Has to be int. |
time_period | int | Time period for time limit | Has to be value from SlaLimitTimePeriodEnum. |
contact_type | int | Contact type | has to be value from ContactTypeEnum. |
contact | string | Contact itself (email) | Has to be string. |
deactivated_until_next_period | bool | Flags whether the limit has been deactivated for current period. | Default: false. |
categories | array | Categories which do belong under this limit. | Each category must be of type string. |
NOTE: Required enumerators are described in SLA Limits Api reference
Example:
{
"id": 3,
"project_id": 1,
"time_limit_in_hours": 20,
"time_period": 2,
"contact_type": 1,
"contact": "pech@simplo.cz",
"categories": [
"A",
"B"
],
"deactivated_until_next_period": true,
"created_at": "2025-02-10T10:51:43+0100",
"updated_at": "2025-02-10T10:51:43+0100"
}