diff --git a/openbis-ipad/BisKit/Classes/CISDOBIpadService.h b/openbis-ipad/BisKit/Classes/CISDOBIpadService.h
index b130e83a9326bd2ae3c99f260934439013a79b12..12a68cc1a1ef36039270327a62f19fd630151c9f 100644
--- a/openbis-ipad/BisKit/Classes/CISDOBIpadService.h
+++ b/openbis-ipad/BisKit/Classes/CISDOBIpadService.h
@@ -52,7 +52,7 @@ enum CISOBIpadServiceErrorCode {
 //! Log the user into the openBIS instance
 - (CISDOBAsyncCall *)loginUser:(NSString *)user password:(NSString *)password;
 
-//! Get all root-level entities from the openBIS ipad service. The success message will be invoked with a collection of CISDOBIpadRawEntity objects.
+//! Get all root-level entities from the openBIS ipad service, possibly along with some children as well. The success message will be invoked with a collection of CISDOBIpadRawEntity objects.
 - (CISDOBAsyncCall *)listRootLevelEntities;
 
 @end
diff --git a/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m b/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m
index 45bddbd6480f022fde28d792723e08672cc5c363..70ccd928b53db4cbffc5f9dd8be7255800c32829 100644
--- a/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m
+++ b/openbis-ipad/BisKit/Tests/CISDOBIpadServiceTest.m
@@ -69,14 +69,15 @@
         NSString *summaryHeader = rawEntity.summaryHeader;
         STAssertNotNil(summaryHeader, @"The summary header should not be nil");
         STAssertNotNil(rawEntity.permId, @"PermId should not be nil");
-        STAssertNotNil(rawEntity.refcon, @"Ref con should not be nil");
+        STAssertNotNil(rawEntity.refcon, @"Refcon should not be nil");
         STAssertNotNil(rawEntity.category, @"Group should not be nil");
         STAssertTrue([summaryHeader length], @"Summary header should not be empty");
         STAssertNotNil(rawEntity.summary, @"Summary should not be nil");
-//        STAssertNotNil(rawEntity.identifier, @"Identifier should not be nil");
-//        STAssertNotNil(rawEntity.imageUrl, @"Image url should not be nil");
-//        STAssertNotNil(rawEntity.children, @"Children should not be nil");
-//        STAssertNotNil(rawEntity.properties, @"Properties type should not be nil");
+        STAssertNotNil(rawEntity.children, @"Children should not be nil");
+        STAssertNotNil(rawEntity.rootLevel, @"RootLevel should not be nil");
+        STAssertNil(rawEntity.identifier, @"Identifier should be nil");
+        STAssertNil(rawEntity.imageUrl, @"Image url should be nil");
+        STAssertNil(rawEntity.properties, @"Properties should be nil");
     }
 }
 
diff --git a/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate b/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate
index 5afda0f130fe0a0021b72cae7a6168f82706c254..7a0a4a9c2b07ef4de21cc7597e8d050e97adda0b 100644
Binary files a/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate and b/openbis-ipad/Research/BisMac.xcodeproj/project.xcworkspace/xcuserdata/cramakri.xcuserdatad/UserInterfaceState.xcuserstate differ