Forgejo · Schema

Cron

Cron represents a Cron task

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
exec_times integer
name string
next string
prev string
schedule string
View JSON Schema on GitHub

JSON Schema

cron.json Raw ↑
{
  "$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"
}