You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
291 B

// Bundled Schema
//
// Describes a collection of binary flatbuffer schema.
//
namespace bluetooth.dumpsys;
table BundledSchemaMap {
name:string;
data:[ubyte];
}
table BundledSchema {
title:string;
root_name:string;
map:[BundledSchemaMap];
}
root_type BundledSchema;