A public library wants an Azure Function to run at 02:15 every night, but a pasted five-field Linux crontab never fires. What schedule format should the timer trigger use?
Select an answer to reveal the explanation.
Short Explanation
Functions timers speak six-field NCRONTAB—seconds first—not the five-field Linux habit. Include those seconds, set the app timezone, and 02:15 actually means 02:15.
Full Explanation
Azure Functions timer triggers use NCRONTAB with six fields, including seconds. Five-field Linux crontabs are a common mispaste and will not schedule as intended. Timezone is controlled by the Function app’s settings. Logic Apps recurrence is a different host and is out of scope as the answer for this Functions timer skill.