Pipedream · Schema

TimerInterval

Timer configuration using interval in seconds

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
intervalSeconds integer Interval in seconds for timer execution
View JSON Schema on GitHub

JSON Schema

pipedream-timerinterval-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimerInterval",
  "title": "TimerInterval",
  "type": "object",
  "description": "Timer configuration using interval in seconds",
  "required": [
    "intervalSeconds"
  ],
  "properties": {
    "intervalSeconds": {
      "type": "integer",
      "description": "Interval in seconds for timer execution"
    }
  }
}