aboutsummaryrefslogtreecommitdiffstats
path: root/test/afb-test/fixtures/sig_test.json
blob: 1325315c2ddd4187172c336c2af7b67397d9b466 (plain)
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
{
	"$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json",
	"signals": [
		{
			"uid": "test_signal",
			"event": "txc/vehicle_speed",
			"retention": 30,
			"unit": "km/h",
			"getSignalsArgs": {
				"event": "vehicle_speed"
			},
			"onReceived": {
				"action": "lua://convert#_Unit_Converter",
				"args": {
					"from": "km/h",
					"to": "mi/h"
				}
			}
		},
		{
			"uid": "engine_speed",
			"event": "txc/engine_speed",
			"retention": 30,
			"unit": "rpm",
			"getSignalsArgs": {
				"event": "engine_speed"
			}
		}
	]
}