14 lines
236 B
Text
14 lines
236 B
Text
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;
|