Cyclr · Schema

Cyclr Cycle

A Cyclr cycle is an active integration workflow running within an account. Cycles are typically created by installing templates and consist of a series of steps that move data between connected applications.

ConnectorsCustom ConnectorsData SynchronizationEmbedded iPaaSEmbedded SaaS IntegrationEmbedded UIIntegration PlatformIntegrationsMarketplaceOAuth 2.0REST APISaaSTemplatesWebhooksWhite LabelWorkflows

Properties

Name Type Description
Id string Unique cycle identifier
Name string Cycle name
Description string Cycle description
Status string Current cycle status
CreatedDate string When the cycle was created
LastRunDate string When the cycle last ran
Connectors array Connectors used by the cycle
Steps array Steps in the cycle
View JSON Schema on GitHub

JSON Schema

cyclr-cycle.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cyclr/refs/heads/main/json-schema/cyclr-cycle.json",
  "title": "Cyclr Cycle",
  "description": "A Cyclr cycle is an active integration workflow running within an account. Cycles are typically created by installing templates and consist of a series of steps that move data between connected applications.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Unique cycle identifier"
    },
    "Name": {
      "type": "string",
      "description": "Cycle name"
    },
    "Description": {
      "type": "string",
      "description": "Cycle description"
    },
    "Status": {
      "type": "string",
      "description": "Current cycle status",
      "enum": ["Active", "Inactive", "Paused", "Error"]
    },
    "CreatedDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the cycle was created"
    },
    "LastRunDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the cycle last ran"
    },
    "Connectors": {
      "type": "array",
      "description": "Connectors used by the cycle",
      "items": {
        "$ref": "cyclr-installed-connector.json"
      }
    },
    "Steps": {
      "type": "array",
      "description": "Steps in the cycle",
      "items": {
        "$ref": "cyclr-step.json"
      }
    }
  },
  "required": ["Id", "Name"]
}