{ "$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" }