mirror of
https://github.com/pfzetto/rebacs
synced 2024-11-23 03:32:49 +01:00
21 lines
283 B
Protocol Buffer
21 lines
283 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package eu.zettoit.graph;
|
||
|
|
||
|
message Object{
|
||
|
string namespace = 1;
|
||
|
string id = 2;
|
||
|
}
|
||
|
message ObjectSet{
|
||
|
Object object = 1;
|
||
|
string relation = 2;
|
||
|
}
|
||
|
|
||
|
|
||
|
message Relation{
|
||
|
oneof src{
|
||
|
Object object = 1;
|
||
|
ObjectSet object_set = 2;
|
||
|
}
|
||
|
ObjectSet dst = 3;
|
||
|
}
|