summaryrefslogtreecommitdiff
path: root/plugins/websockets/schema/message.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/websockets/schema/message.fbs')
-rw-r--r--plugins/websockets/schema/message.fbs10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/websockets/schema/message.fbs b/plugins/websockets/schema/message.fbs
new file mode 100644
index 00000000..f2d92c78
--- /dev/null
+++ b/plugins/websockets/schema/message.fbs
@@ -0,0 +1,10 @@
+namespace message;
+
+table Message {
+ command:string;
+ broker:string;
+ topics:[string];
+ payload:[byte];
+}
+
+root_type Message;