@Dave Gray Thanks for reaching out.
Azure Functions uses the NCronTab library to interpret NCRONTAB expressions. NCRONTAB expression supports both five field and six field formats. The sixth field position is a value for seconds which is placed at the beginning of the expression. For more details you can refer to this document. Therefore, some of the sites which don't support six field format will make your CORM expression as invalid.
Your CORN expression 0 15 10 * * *
means that it will occur at 10:15 every day. The default time zone used with the CRON expressions is Coordinated Universal Time (UTC)
You can refer to below NCrontab Expression Tester: https://ncrontab.swimburger.net/
Alternative: https://crontab.guru/
Feel free to get back to me if you have any queries or concerns.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.