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

0001 namespace Sink.Commands;
0002 
0003 table ModifyEntity {
0004     revision: ulong;
0005     entityId: string;
0006     deletions: [string]; //A list of deleted properties
0007     domainType: string;
0008     delta: [ubyte]; //Contains an entity buffer with all changed properties set
0009     replayToSource: bool = true;
0010     modifiedProperties: [string];
0011     targetResource: string; //Contains the target resource for a move/copy operation
0012     removeEntity: bool = false; //This modification removes the entity
0013 }
0014 
0015 root_type ModifyEntity;