-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-workflow.json
More file actions
73 lines (73 loc) · 1.51 KB
/
test-workflow.json
File metadata and controls
73 lines (73 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "FAIM Forecast - Local Test",
"nodes": [
{
"parameters": {},
"id": "uuid-start-node",
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"jsonData": "{\n \"timeSeries\": [10, 12, 14, 13, 15, 17, 16, 18, 20, 19, 21, 22]\n}"
},
"id": "uuid-set-node",
"name": "Set Test Data",
"type": "n8n-nodes-base.set",
"typeVersion": 3,
"position": [450, 300]
},
{
"parameters": {
"model": "chronos2",
"modelVersion": "1",
"inputData": "={{ $json.timeSeries }}",
"horizon": 7,
"outputType": "point"
},
"id": "uuid-faim-node",
"name": "FAIM Forecast",
"type": "@faim-group/n8n-nodes-faim.faimForecast",
"typeVersion": 1,
"position": [650, 300],
"credentials": {
"faimApi": "FAIM_API_CREDENTIALS"
}
}
],
"connections": {
"Start": {
"main": [
[
{
"node": "Set Test Data",
"type": "main",
"index": 0
}
]
]
},
"Set Test Data": {
"main": [
[
{
"node": "FAIM Forecast",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "1d1c4fcf-2a2a-4a2a-8a8a-1d1c4fcf2a2a",
"meta": {
"instanceId": "test"
},
"pinData": {}
}