Cron represents a Cron task
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Cron", "description": "Cron represents a Cron task", "type": "object", "properties": { "exec_times": { "type": "integer", "format": "int64", "x-go-name": "ExecTimes" }, "name": { "type": "string", "x-go-name": "Name" }, "next": { "type": "string", "format": "date-time", "x-go-name": "Next" }, "prev": { "type": "string", "format": "date-time", "x-go-name": "Prev" }, "schedule": { "type": "string", "x-go-name": "Schedule" } }, "x-go-package": "forgejo.org/modules/structs" }