Bluemage/schemas/proto/device/v1/exists.proto

17 lines
361 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package device.v1;
import "buf/validate/validate.proto";
option go_package = "github.com/tigorlazuardi/bluemage/go/gen/proto/device/v1";
message DeviceExistsRequest {
// The `slug` is a unique identifier for the device.
string slug = 1 [(buf.validate.field).string.min_len = 1];
}
message DeviceExistsResponse {
bool exists = 1;
}