Hi all,
Is that possible to have multiple schedules with different parameters for a single job? I'm trying to create a job like this:
{
"description": "Integration Schedule",
"action": "integration:scheduleIntegration.xsjs::schedule",
"schedules": [
{
"description": "Daily integration",
"xscron": "* * * * 0 0 0",
"parameter": {
"tipoDelta": "D"
}
},
{
"description": "Fortnightly integration",
"xscron": "* * */15 * 0 0 0",
"parameter": {
"tipoDelta": "Q"
}
},
{
"description": "Monthly integration",
"xscron": "* * 1 * 0 0 0",
"parameter": {
"tipoDelta": "M"
}
}
]
}
Besides, are my crons correct? I think the cron is 'year month day weekday hour minute second' right? Thanks in advance!