2024-11-20 13:31:46 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option go_package = "git.coopgo.io/coopgo-platform/diags/grpcapi";
|
|
|
|
|
|
|
|
import "google/protobuf/struct.proto";
|
2025-02-10 11:07:54 +00:00
|
|
|
import "google/protobuf/timestamp.proto";
|
2024-11-20 13:31:46 +00:00
|
|
|
|
|
|
|
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;
|
2025-02-10 11:07:54 +00:00
|
|
|
google.protobuf.Timestamp diagdate = 8;
|
2024-11-20 13:31:46 +00:00
|
|
|
}
|