syntax = "proto3"; package onprem.user.v1; option go_package="gitlab.com/on-prem-net/protocol/onprem/user/v1;userproto"; import "google/protobuf/timestamp.proto"; message Team { string id = 1; repeated string chassis_ids = 2; optional string description = 3; repeated string device_ids = 4; repeated string facility_ids = 5; repeated string member_user_ids = 6; string name = 7; oneof owner { string owner_user_id = 9; } google.protobuf.Timestamp created_at = 10; string created_by_user_id = 11; optional google.protobuf.Timestamp deleted_at = 12; optional string deleted_by_user_id = 13; optional google.protobuf.Timestamp updated_at = 14; optional string updated_by_user_id = 15; reserved 16; repeated string lambda_ids = 17; repeated string lambda_trigger_ids = 18; }