blob: 764f53fdac9cf32e01980fa1da6e59f3ca00b17d [file] [log] [blame]
syntax = "proto3";
package schema;
import "google/protobuf/empty.proto";
// Contains the name and content of a *.proto file
message ProtoFile {
string file_name = 1; // name of proto file
string proto = 2; // content of proto file
bytes descriptor = 3; // compiled descriptor for proto (zlib compressed)
}
// Proto files and compiled descriptors for this interface
message Schemas {
// Proto files
repeated ProtoFile protos = 1;
// Name of proto file to generae swagger.json from
string swagger_from = 2;
}
// Schema services
service SchemaService {
// Return active grpc schemas
rpc GetSchema(google.protobuf.Empty) returns (Schemas) {}
}