File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
proto/frequenz/api/dispatch/v1 Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -380,8 +380,11 @@ message UpdateMicrogridDispatchRequest {
380380 // On which day(s) of the week does the event occur
381381 repeated RecurrenceRule.Weekday byweekdays = 6 ;
382382
383- // On which day(s) of the month does the event occur
384- repeated uint32 bymonthdays = 7 ;
383+ // On which day(s) of the month does the event occur. Valid values are 1 to 31 or -31 to -1.
384+ //
385+ // For example, -10 represents the tenth to the last day of the month.
386+ // The bymonthdays rule part MUST NOT be specified when the FREQ rule part is set to WEEKLY.
387+ repeated int32 bymonthdays = 7 ;
385388
386389 // On which month(s) of the year does the event occur
387390 repeated uint32 bymonths = 8 ;
You can’t perform that action at this time.
0 commit comments