summaryrefslogtreecommitdiffstats
path: root/common/metadata.fbs
blob: 421d13bf16bb0ce6885c6415bf8628fb99c7129e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Sink;

enum Operation : byte { Creation = 1, Modification, Removal }

table Metadata {
    revision: ulong;
    replayToSource: bool = true;
    operation: Operation = Modification;
    modifiedProperties: [string];
}

root_type Metadata;