add flatbuffers support and initial rewrite
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
5f7a62ecb7
commit
4d7bf09c4e
72 changed files with 3929 additions and 1403 deletions
14
include/ikarus/models/property.fbs
Normal file
14
include/ikarus/models/property.fbs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
include "value.fbs";
|
||||
|
||||
namespace Ikarus;
|
||||
|
||||
table Property {
|
||||
id: int64;
|
||||
name: string;
|
||||
description: string;
|
||||
tags: [string];
|
||||
value_schema: Ikarus.Value.Schema;
|
||||
default_value: Ikarus.Value.Data;
|
||||
}
|
||||
|
||||
root_type Property;
|
||||
Loading…
Add table
Add a link
Reference in a new issue