diff --git a/proto/caosdb/entity/v1alpha1/main.proto b/proto/caosdb/entity/v1alpha1/main.proto
index 5c998ca88560afd63437fbfd9ef04ec7dd152153..a0c3e75c68fa8b38fccf7e171af2925ab6dafcd7 100644
--- a/proto/caosdb/entity/v1alpha1/main.proto
+++ b/proto/caosdb/entity/v1alpha1/main.proto
@@ -462,13 +462,20 @@ message Hash {
 enum Importance {
   // The importance is unset/unknown.
   IMPORTANCE_UNSPECIFIED = 0;
-  // The property is obligatory for children of this entity. The server will flag an error when an obligatory property of a parent is missing during updates or insertions of a child entity. It says: "YOU MUST!"
+  // The property is obligatory for children of this entity. The server will
+  // flag an error when an obligatory property of a parent is missing during
+  // updates or insertions of a child entity. It says: "YOU MUST!"
   IMPORTANCE_OBLIGATORY = 1;
-  // The property is recommended for children of this entity. The server will flag a warning when a recommended property of a parent is missing during updates or insertions of a child entity. It says: "YOU SHOULD!"
+  // The property is recommended for children of this entity. The server will
+  // flag a warning when a recommended property of a parent is missing during
+  // updates or insertions of a child entity. It says: "YOU SHOULD!"
   IMPORTANCE_RECOMMENDED = 2;
-  // The property is merely suggested for children of this entity. It says: "YOU MAY WANT TO?"
+  // The property is merely suggested for children of this entity. It says:
+  // "YOU MAY WANT TO?"
   IMPORTANCE_SUGGESTED = 3;
-  // The property is fix and child entities should not add this property to themselves (This is a bit like static in object-oriented programming languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY"
+  // The property is fix and child entities should not add this property to
+  // themselves (This is a bit like static in object-oriented programming
+  // languages). It says: "KINDLY IGNORE THIS ONE FOR CHILDREN OF THIS ENTITY"
   IMPORTANCE_FIX = 4;
 }