Skip to content

Crontab Configuration Schema

docs.neops.io/schema/RootWorkflow#/definitions/CrontabConfiguration

Configuration for cron-style scheduling following standard cron syntax with seconds precision.

Abstract Extensible Status Identifiable Custom Properties Additional Properties Access Restrictions Defined In
Can be instantiated No Unknown status No Forbidden Forbidden none RootWorkflow.schema.json*

CrontabConfiguration Type

object (Crontab Configuration)

CrontabConfiguration Examples

{
  "dayOfMonth": "*",
  "dayOfWeek": "1-5",
  "hour": "9",
  "minute": "30",
  "month": "*",
  "second": "0",
  "timezone": "America/New_York"
}

CrontabConfiguration Properties

Property Type Required Nullable Defined by
dayOfMonth string Required cannot be null Root Workflow
dayOfWeek string Required cannot be null Root Workflow
hour string Required cannot be null Root Workflow
minute string Required cannot be null Root Workflow
month string Required cannot be null Root Workflow
second string Required cannot be null Root Workflow
timezone string Required cannot be null Root Workflow

dayOfMonth

Specifies the day of month (1-31) when the workflow should run. Supports standard cron syntax.

dayOfMonth

dayOfMonth Type

string (Day of Month)

dayOfWeek

Specifies the day of week (0-6 where 0=Sunday) when the workflow should run. Supports standard cron syntax.

dayOfWeek

dayOfWeek Type

string (Day of Week)

hour

Specifies the hours (0-23) when the workflow should run. Supports standard cron syntax.

hour

hour Type

string (Hours)

minute

Specifies the minutes (0-59) when the workflow should run. Supports standard cron syntax.

minute

minute Type

string (Minutes)

month

Specifies the month (1-12) when the workflow should run. Supports standard cron syntax.

month

month Type

string (Month)

month Examples

"*"

second

Specifies the seconds (0-59) when the workflow should run. Supports standard cron syntax including:

    • (any value)
  • , (value list separator)
    • (range of values)
  • / (step values)

second

second Type

string (Seconds)

timezone

Represents a timezone identifier in IANA Time Zone Database format

timezone

timezone Type

string (Timezone)

timezone Constraints

unknown format: the value of this string must follow the format: timezone

timezone Examples

"America/New_York"
"Europe/Berlin"
"Asia/Tokyo"