Service Level Agreement Category Model
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single SLA. |
name | string | Name of category | Is unique pair with sla_category_id. |
description | string/null | Category description | Is unique pair with project_id. |
notification_type | int/null | Type of notification | Must be a value from ServiceLevelAgreementCategoryNotificationTypeEnum. |
created_at | date | Creation date | |
updated_at | date | Latest update date |
NOTE: Required enumerator is described in SLA Category Api reference
Example:
{
"id": 5,
"name": "A",
"description": "Kategorie A vyjadřuje závažné incidenty.",
"notification_type": "1",
"created_at": "2024-01-03T12:38:50+0100",
"updated_at": "2024-01-03T12:38:50+0100",
"_links": [
{
"href": "/api/v0/service-level-agreement-categories/5",
"rel": "self",
"type": "GET"
}
]
}