Warning, /pim/sink/common/metadata.fbs is written in an unsupported language. File is not indexed.

0001 namespace Sink;
0002 
0003 enum Operation : byte { Creation = 1, Modification, Removal }
0004 
0005 table Metadata {
0006     revision: ulong;
0007     replayToSource: bool = true;
0008     operation: Operation = Modification;
0009     modifiedProperties: [string];
0010 }
0011 
0012 root_type Metadata;