mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 03:29:53 +00:00
10 lines
183 B
Protocol Buffer
10 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "group.org.prod.schemas.contact";
|
|
option java_outer_classname = "ContactProto";
|
|
|
|
message Contact {
|
|
string email = 1;
|
|
string phone = 2;
|
|
}
|