{
  "name": "CSV to Jira Tickets",
  "nodes": [
    {
      "parameters": {},
      "id": "manual-trigger",
      "name": "When clicking Test workflow",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [240, 320]
    },
    {
      "parameters": {
        "operation": "read",
        "fileSelector": "tickets.csv",
        "options": {}
      },
      "id": "read-csv",
      "name": "Read CSV File",
      "type": "n8n-nodes-base.readWriteFile",
      "typeVersion": 1,
      "position": [440, 320]
    },
    {
      "parameters": {
        "operation": "csv",
        "binaryPropertyName": "data",
        "options": {}
      },
      "id": "parse-csv",
      "name": "Parse CSV",
      "type": "n8n-nodes-base.extractFromFile",
      "typeVersion": 1,
      "position": [640, 320]
    },
    {
      "parameters": {
        "resource": "issue",
        "operation": "create",
        "project": "10001",
        "issueType": "10005",
        "summary": "={{ $json.summary }}",
        "additionalFields": {
          "description": "={{ $json.description }}",
          "labels": ["imported"]
        }
      },
      "id": "create-jira",
      "name": "Create Jira Ticket",
      "type": "n8n-nodes-base.jira",
      "typeVersion": 1,
      "position": [840, 320],
      "credentials": {
        "jiraSoftwareCloudApi": {
          "id": "",
          "name": "Jira Cloud account"
        }
      }
    },
    {
      "parameters": {},
      "id": "done",
      "name": "Done",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "position": [1040, 320]
    }
  ],
  "connections": {
    "When clicking Test workflow": {
      "main": [[{ "node": "Read CSV File", "type": "main", "index": 0 }]]
    },
    "Read CSV File": {
      "main": [[{ "node": "Parse CSV", "type": "main", "index": 0 }]]
    },
    "Parse CSV": {
      "main": [[{ "node": "Create Jira Ticket", "type": "main", "index": 0 }]]
    },
    "Create Jira Ticket": {
      "main": [[{ "node": "Done", "type": "main", "index": 0 }]]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "pinData": {}
}
