Pipedream · Schema

TimerCron

Timer configuration using cron expression

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
cron string Cron expression for timer execution
View JSON Schema on GitHub

JSON Schema

pipedream-timercron-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimerCron",
  "title": "TimerCron",
  "type": "object",
  "description": "Timer configuration using cron expression",
  "required": [
    "cron"
  ],
  "properties": {
    "cron": {
      "type": "string",
      "description": "Cron expression for timer execution"
    }
  }
}