diff --git a/odpf/shield/v1/shield.proto b/odpf/shield/v1/shield.proto index d14f4164..dcea8f6f 100644 --- a/odpf/shield/v1/shield.proto +++ b/odpf/shield/v1/shield.proto @@ -344,12 +344,10 @@ message Group { string id = 1; string name = 2 [(validate.rules).string.pattern = "^[A-Za-z0-9_-]+$"]; string slug = 3; - repeated User admins = 4; - int32 member_count = 5; - string org_id = 6; - google.protobuf.Struct metadata = 7; - google.protobuf.Timestamp created_at = 8; - google.protobuf.Timestamp updated_at = 9; + string org_id = 4; + google.protobuf.Struct metadata = 5; + google.protobuf.Timestamp created_at = 6; + google.protobuf.Timestamp updated_at = 7; } message CreateGroupResponse { @@ -493,6 +491,7 @@ message ProjectRequestBody { string name = 1 [(validate.rules).string.pattern = "^[A-Za-z0-9_-]+$"]; string slug = 2; google.protobuf.Struct metadata = 3; + string org_id = 4; } message CreateProjectRequest { @@ -503,9 +502,10 @@ message Project { string id = 1; string name = 2 [(validate.rules).string.pattern = "^[A-Za-z0-9_-]+$"]; string slug = 3; - google.protobuf.Struct metadata = 4; - google.protobuf.Timestamp created_at = 5; - google.protobuf.Timestamp updated_at = 6; + string org_id = 4; + google.protobuf.Struct metadata = 5; + google.protobuf.Timestamp created_at = 6; + google.protobuf.Timestamp updated_at = 7; } message CreateProjectResponse {