diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-18 15:17:30 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-18 15:17:30 +0100 |
commit | d8cd2d6585507a4e40881092a633ec1a80b14dd9 (patch) | |
tree | e710026c9191fe42643f7996a55b460e3ff39622 /common/commands/inspection.fbs | |
parent | 0d55900241772fa5cc5028934358cbcb28702c46 (diff) | |
download | sink-d8cd2d6585507a4e40881092a633ec1a80b14dd9.tar.gz sink-d8cd2d6585507a4e40881092a633ec1a80b14dd9.zip |
Draft of inspection API
Diffstat (limited to 'common/commands/inspection.fbs')
-rw-r--r-- | common/commands/inspection.fbs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/commands/inspection.fbs b/common/commands/inspection.fbs new file mode 100644 index 0000000..aaae1ae --- /dev/null +++ b/common/commands/inspection.fbs | |||
@@ -0,0 +1,12 @@ | |||
1 | namespace Akonadi2.Commands; | ||
2 | |||
3 | table Inspection { | ||
4 | id: string; | ||
5 | type: int; | ||
6 | entityId: string; | ||
7 | domainType: string; | ||
8 | property: string; | ||
9 | expectedValue: string; | ||
10 | } | ||
11 | |||
12 | root_type Inspection; | ||