From f23ba6d53ee3a8e96a83ce12c42d4c5ccd3ea93a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sat, 16 Jul 2022 16:14:54 +0200 Subject: [PATCH] OAPI: correction to the sleep schedule example The `days_of_week` field must be space-separated, not comma-separated. --- pkg/api/flamenco-openapi.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/flamenco-openapi.yaml b/pkg/api/flamenco-openapi.yaml index a9851469..3d82feaa 100644 --- a/pkg/api/flamenco-openapi.yaml +++ b/pkg/api/flamenco-openapi.yaml @@ -2007,7 +2007,7 @@ components: required: [is_active, days_of_week, start_time, end_time] example: is_active: true - days_of_week: "mo,tu,th,fr" + days_of_week: "mo tu th fr" start_time: "09:00" end_time: "18:00"