Skip to content

WorkTimeProblemDto

← Manager Time Tracker DTO

Soft-warning emitted by WorkTime write endpoints alongside a successful response. Mirrors ASP.NET Core's ProblemDetails JSON shape but used for non-blocking advisories — e.g. work-time-entry-break-below-arbzg-6h (ArbZG break warning), work-time-entry-backlog-warning, …-backlog-soft-block.

Hard validation failures (overlap, daily-limit, no-running-timer, …) come back as regular 4xx error responses and surface as ProblemDetailsError from the http client, not in this list.

Поля

ПолеТипОбязательноеОписание
typestring | nullдаRFC-7807 type identifier (e.g. work-time-entry-break-below-arbzg-9h).
titlestring | nullда
detailstring | nullда
statusnumber | nullда
instancestring | nullда

Пример

json
{
  "type": "string",
  "title": "string",
  "detail": "string",
  "status": 0,
  "instance": "string"
}