1// Bundled Schema
2//
3// Describes a collection of binary flatbuffer schema.
4//
5
6namespace bluetooth.dumpsys;
7
8table BundledSchemaMap {
9    name:string;
10    data:[ubyte];
11}
12
13table BundledSchema {
14    title:string;
15    root_name:string;
16    map:[BundledSchemaMap];
17}
18
19root_type BundledSchema;
20