15 lines
323 B
Protocol Buffer
15 lines
323 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "git.coopgo.io/coopgo-platform/diags/grpcapi";
|
|
|
|
import "google/protobuf/struct.proto";
|
|
|
|
message Diag {
|
|
string id = 1;
|
|
string name = 2;
|
|
string namespace = 3;
|
|
string json_schema = 4;
|
|
string ui_schema = 5;
|
|
google.protobuf.Struct data = 6;
|
|
bool deleted = 7;
|
|
} |