mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-15 13:10:44 +00:00
11 lines
154 B
Protocol Buffer
11 lines
154 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
import "address.proto";
|
||
|
import "contact.proto";
|
||
|
|
||
|
message Company {
|
||
|
string name = 1;
|
||
|
Address address = 2;
|
||
|
Contact contact = 3;
|
||
|
}
|