You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to compose two, otherwise separately working schedule together.
1st schedule is:
in text format: 'after 10:00am and before 11:00am also after 4:00pm and before 5:00pm'
in JSON format: {schedules: [ { t_a: [36000], t_b: [39600], }, { t_a: [57600], t_b: [61200], }, ]}
2nd schedule is:
in text format: 'after 6:00pm on the 24 day of August in 2022'
in JSON format: {schedules: [ { t_a: [64800], D: [24], M: [8], Y: [2022], }, ]}
but when I compose it together, the 2nd part is ignored.
text: 'after 10:00am and before 11:00am also after 4:00pm and before 5:00pm also after 6:00pm on the 24 day of August in 2022'
JSON: {schedules: [ { t_a: [36000], t_b: [39600], }, { t_a: [57600], t_b: [61200], }, { t_a: [64800], D: [24], M: [8], Y: [2022], }, ]}
What would the correct way to describe a schedule for two recurring intervals but only after a specific time and date?
thanks,
Norbi
Checklist
[X ] I have read the documentation.
The text was updated successfully, but these errors were encountered:
What would you like to discuss?
Hi!
I'd like to compose two, otherwise separately working schedule together.
1st schedule is:
in text format:
'after 10:00am and before 11:00am also after 4:00pm and before 5:00pm'
in JSON format:
{schedules: [ { t_a: [36000], t_b: [39600], }, { t_a: [57600], t_b: [61200], }, ]}
2nd schedule is:
in text format:
'after 6:00pm on the 24 day of August in 2022'
in JSON format:
{schedules: [ { t_a: [64800], D: [24], M: [8], Y: [2022], }, ]}
but when I compose it together, the 2nd part is ignored.
text:
'after 10:00am and before 11:00am also after 4:00pm and before 5:00pm also after 6:00pm on the 24 day of August in 2022'
JSON:
{schedules: [ { t_a: [36000], t_b: [39600], }, { t_a: [57600], t_b: [61200], }, { t_a: [64800], D: [24], M: [8], Y: [2022], }, ]}
What would the correct way to describe a schedule for two recurring intervals but only after a specific time and date?
thanks,
Norbi
Checklist
The text was updated successfully, but these errors were encountered: