diff --git a/proto/collections/collections.proto b/proto/collections/collections.proto
index 970ac99d4ab6d3f70177c8db4403d4c9a3b94b65..e7dd51fa9a8d481275997817fd60c47ccb472b65 100644
--- a/proto/collections/collections.proto
+++ b/proto/collections/collections.proto
@@ -11,8 +11,8 @@ package content.collections;
 message Access {
   repeated common.Action actions = 1;
   repeated string hidden_fields = 5;
-  repeated string deny_read_fields = 6;
-  repeated string deny_write_fields = 7;
+  repeated string readonly_fields = 6;
+  repeated string writeonly_fields = 7;
 }
 
 message Collection {
diff --git a/proto/common/common.proto b/proto/common/common.proto
index d68468a71941446fe8c5d0258876b1352d996248..a929133532359066ac5e57f91cf49988cd5812ef 100644
--- a/proto/common/common.proto
+++ b/proto/common/common.proto
@@ -40,8 +40,8 @@ message Rule {
   repeated Action actions = 2;
   Access access = 3;
   repeated string hidden_fields = 5;
-  repeated string deny_read_fields = 6;
-  repeated string deny_write_fields = 7;
+  repeated string readonly_fields = 6;
+  repeated string writeonly_fields = 7;
   string read_filter = 8;
   string write_filter = 9;
 }