Apifuse · JSON Structure

Apifuse Workflow Structure

An integration workflow in the Apifuse platform.

Type: object Properties: 4
Embedded IntegrationsIntegration PlatformIntegrationsiPaaSMarketplaceSaaSWorkflow Automation

Workflow is a JSON Structure definition published by Apifuse, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name status triggerType

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apifuse/refs/heads/main/json-structure/apifuse-workflow-structure.json",
  "description": "An integration workflow in the Apifuse platform.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the workflow.",
      "example": "wf-001"
    },
    "name": {
      "type": "string",
      "description": "Name of the workflow.",
      "example": "Lead Sync"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "draft"
      ],
      "description": "Current status of the workflow."
    },
    "triggerType": {
      "type": "string",
      "enum": [
        "polling",
        "realtime",
        "scheduled",
        "webhook"
      ],
      "description": "Type of trigger that activates the workflow."
    }
  },
  "name": "Workflow"
}