n8n-syntax-workflow-json
Installation
SKILL.md
n8n-syntax-workflow-json
Quick Reference
Workflow JSON Top-Level Structure (IWorkflowBase)
| Field | Type | Required | Purpose |
|---|---|---|---|
id |
string |
YES | Unique workflow identifier |
name |
string |
YES | Human-readable workflow name |
active |
boolean |
YES | Whether workflow listens for triggers |
isArchived |
boolean |
YES | Whether workflow is archived |
nodes |
INode[] |
YES | Array of all nodes in the workflow |
connections |
IConnections |
YES | Connection map between nodes |
settings |
IWorkflowSettings |
NO | Workflow-level configuration |
staticData |
IDataObject |
NO | Persistent data (polling state, etc.) |
pinData |
IPinData |
NO | Pinned test data for manual execution |
description |
string | null |
NO | Workflow description |
versionId |
string |
NO | Version identifier |
Related skills