{
  "name": "create_lead",
  "label": "Create Lead",
  "description": "Creates a new lead in Zync.",
  "type": "action",
  "connection": { "$ref": "#/connection" },
  "parameters": [
    { "name": "name", "label": "Name", "type": "text", "required": true },
    { "name": "email", "label": "Email", "type": "email", "required": false },
    { "name": "phone", "label": "Phone", "type": "text", "required": false },
    { "name": "company", "label": "Company", "type": "text", "required": false },
    { "name": "source", "label": "Source", "type": "text", "required": false },
    { "name": "estimated_value", "label": "Estimated Value", "type": "number", "required": false }
  ],
  "interface": {
    "output": [
      { "name": "id", "label": "Lead ID", "type": "text" },
      { "name": "name", "label": "Name", "type": "text" },
      { "name": "stage", "label": "Stage", "type": "text" },
      { "name": "source", "label": "Source", "type": "text" },
      { "name": "created_at", "label": "Created At", "type": "date" }
    ]
  }
}
