From b53b1cdd3c8ae2bfffc4ad3e3cea1868046a8081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20L=C3=BCcke?= Date: Tue, 6 Apr 2021 13:13:35 +0200 Subject: [PATCH] =?UTF-8?q?FIXING:=20Falsches=20Format=20f=C3=BCr=20die=20?= =?UTF-8?q?Eingabe=20der=20Arbeitszeit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/html/openapi.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/html/openapi.json b/api/html/openapi.json index 6af9f42..d04650a 100644 --- a/api/html/openapi.json +++ b/api/html/openapi.json @@ -174,7 +174,9 @@ }, "workingHours": { "description": "Arbeitszeit des Tages", - "type": "integer" + "type": "string", + "pattern": "[0-5]\\d:[0-5]\\d:[0-5]\\d", + "example": "08:01:00" } } },