mirror of
https://github.com/pfzetto/rebacs
synced 2024-11-22 19:22:51 +01:00
20 lines
283 B
Protocol Buffer
20 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;
|
|
}
|