xref: /aosp_15_r20/external/federated-compute/fcp/tracing/tools/testdata/TableWithNamespace.fbs (revision 14675a029014e728ec732f129a32e299b2da0601)
1include "fcp/tracing/tracing_schema_common.fbs";
2namespace foo.bar;
3
4enum Color : int { Red = 0, Green = 1, Blue = 2 }
5
6table TestTable (tag: "TETB", span) {
7  id: int;
8  color: Color;
9}
10