diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-10-23 23:06:50 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | 25bef6ee737652ff62789f4af9db2373f93afb00 (patch) | |
tree | aab5d4fc82e07fad452b27e1dcf2f74382fd400d /conf.d/project/etc/sig-demoboard.json | |
parent | 01650b71c92a67807e346bfff655c59df58f2bfd (diff) |
Update app-template & use new JSON schema for conf
Change-Id: I6e920ee08ea38f53f5dcc58d58f89cf1ace22f42
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/etc/sig-demoboard.json')
-rw-r--r-- | conf.d/project/etc/sig-demoboard.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/conf.d/project/etc/sig-demoboard.json b/conf.d/project/etc/sig-demoboard.json index 1bccbff..bb64fe9 100644 --- a/conf.d/project/etc/sig-demoboard.json +++ b/conf.d/project/etc/sig-demoboard.json @@ -1,7 +1,8 @@ { + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", "signals": [ { - "id": "vehicle_speed", + "uid": "vehicle_speed", "event": "low-can/diagnostic_messages.vehicle.speed", "retention": 30, "unit": "km/h", @@ -19,7 +20,7 @@ } }, { - "id": "engine_speed", + "uid": "engine_speed", "event": "low-can/diagnostic_messages.engine.speed", "retention": 30, "unit": "rpm", @@ -29,14 +30,14 @@ } }, { - "id": "fuel_level", + "uid": "fuel_level", "event": "low-can/diagnostic_messages.fuel.level", "retention":30, "unit": "liter", "frequency": 1 }, { - "id": "engine_load", + "uid": "engine_load", "event": "low-can/diagnostic_messages.engine.load", "retention":30, "unit": "Nm", |