The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "linear-simple-001",
"name": "Linear Simple",
"active": false,
"settings": {
"executionOrder": "v1"
},
"nodes": [
{
"id": "node-trigger-001",
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
100,
200
],
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 9 * * *"
}
]
}
}
},
{
"id": "node-http-001",
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
300,
200
],
"parameters": {
"url": "https://api.example.com/data",
"method": "GET"
}
},
{
"id": "node-set-001",
"name": "Set Fields",
"type": "n8n-nodes-base.set",
"typeVersion": 3,
"position": [
500,
200
],
"parameters": {
"assignments": {
"assignments": [
{
"name": "processed",
"value": "={{ $json.data }}",
"type": "string"
}
]
}
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
},
"HTTP Request": {
"main": [
[
{
"node": "Set Fields",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Linear Simple. Uses httpRequest. Scheduled trigger; 3 nodes.
Source: https://github.com/Rakurai/n8n-proctor/blob/main/test/fixtures/workflows/linear-simple.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
ELYVN Deploy Verifier. Uses httpRequest. Scheduled trigger; 6 nodes.
03 · Auditoria Diária — Carlos. Uses httpRequest. Scheduled trigger; 6 nodes.
Fechamento Mensal - Automação. Uses httpRequest, emailSend. Scheduled trigger; 6 nodes.