Skip to main content

Service Level Agreement Category Model

PropertyTypeDescriptionInformation
idintIdentifierUnique for single SLA.
namestringName of categoryIs unique pair with sla_category_id.
descriptionstring/nullCategory descriptionIs unique pair with project_id.
notification_typeint/nullType of notificationMust be a value from ServiceLevelAgreementCategoryNotificationTypeEnum.
created_atdateCreation date
updated_atdateLatest 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"
}
]
}