From da94266798a378da52aa915affbba88a86e0be6e Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 30 Jul 2019 15:42:58 +0200 Subject: [PATCH 01/42] DOC-236 preparation for EC2 test --- .../RandomActionsOnDatasafeTest.java | 6 +- ...domActionsOnSimpleDatasafeAdapterTest.java | 4 +- .../framework/BaseRandomActions.java | 28 +- .../fixture/generator/FixtureGenerator.java | 10 +- .../resources/fixture/fixture_10000_ops.json | 101397 +++++++++++++++ .../resources/fixture/fixture_1000_ops.json | 10280 ++ 6 files changed, 111708 insertions(+), 17 deletions(-) create mode 100644 datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_10000_ops.json create mode 100644 datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_1000_ops.json diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java index 6af5d2dbe..5c2f17e6d 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java @@ -26,14 +26,14 @@ class RandomActionsOnDatasafeTest extends BaseRandomActions { @ParameterizedTest @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") - void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) { + void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInKb) { DefaultDatasafeServices datasafeServices = datasafeServices(descriptor); StatisticService statisticService = new StatisticService(); executeTest( - smallFixture(), + mediumFixture(), descriptor.getName(), - filesizeInMb, + filesizeInKb, threadCount, datasafeServices.userProfile(), datasafeServices.privateService(), diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java index 4f05c7ae8..57193a059 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java @@ -45,14 +45,14 @@ class RandomActionsOnSimpleDatasafeAdapterTest extends BaseRandomActions { @ParameterizedTest @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") - void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) { + void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInKb) { DefaultDatasafeServices datasafeServices = datasafeServicesFromSimpleDatasafeAdapter(descriptor); StatisticService statisticService = new StatisticService(); executeTest( smallSimpleDocusafeAdapterFixture(), descriptor.getName(), - filesizeInMb, + filesizeInKb, threadCount, datasafeServices.userProfile(), datasafeServices.privateService(), diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index c8bb9c3da..3fe6ef34d 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -45,11 +45,11 @@ public abstract class BaseRandomActions extends WithStorageProvider { private final Logger log = LoggerFactory.getLogger(getClass()); - private static final int MEGABYTE_TO_BYTE = 1024 * 1024; + private static final int KILOBYTE_TO_BYTE = 1024; private static final long TIMEOUT = 30L; - private static final Set THREAD_COUNT = ImmutableSet.of(2, 4); - private static final Set FILE_SIZE_M_BYTES = ImmutableSet.of(1, 10); + private static final Set THREAD_COUNT = ImmutableSet.of(2, 4, 8); + private static final Set FILE_SIZE_K_BYTES = ImmutableSet.of(100, 1024, 10240); // 100KB, 1MB, 10MB @BeforeEach void prepare() { @@ -66,6 +66,14 @@ protected Fixture smallFixture() { return fixture("fixture/fixture_200_ops.json"); } + protected Fixture mediumFixture() { + return fixture("fixture/fixture_1000_ops.json"); + } + + protected Fixture bigFixture() { + return fixture("fixture/fixture_10000_ops.json"); + } + @SneakyThrows protected Fixture fixture(String path) { try (Reader reader = Resources.asCharSource( @@ -78,16 +86,16 @@ protected Fixture fixture(String path) { @ValueSource protected static Stream actionsOnSoragesAndThreadsAndFilesizes() { return Sets.cartesianProduct( - Collections.singleton(minio()), - THREAD_COUNT, - FILE_SIZE_M_BYTES + Collections.singleton(s3()), + THREAD_COUNT, + FILE_SIZE_K_BYTES ).stream().map(it -> Arguments.of(it.get(0), it.get(1), it.get(2))); } protected void executeTest( Fixture fixture, StorageDescriptorName storageName, - int filesizeInMb, + int filesizeInKb, int threads, ProfileRegistrationService profileRegistrationService, PrivateSpaceService privateSpaceService, @@ -96,7 +104,7 @@ protected void executeTest( ) { OperationQueue queue = new OperationQueue(fixture); OperationExecutor executor = new OperationExecutor( - filesizeInMb * MEGABYTE_TO_BYTE, + filesizeInKb * KILOBYTE_TO_BYTE, profileRegistrationService, privateSpaceService, inboxService, @@ -113,10 +121,10 @@ protected void executeTest( assertThat(exceptions).isEmpty(); assertThat(terminatedOk).isTrue(); - log.info("==== Statistics for {} with {} threads and {} Mb filesize: ====", + log.info("==== Statistics for {} with {} threads and {} Kb filesize: ====", storageName, threads, - filesizeInMb + filesizeInKb ); statisticService.generateReport().forEach((name, percentiles) -> diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java index 2ecbe4aeb..411913558 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java @@ -3,6 +3,7 @@ import com.google.gson.GsonBuilder; import de.adorsys.datasafe.business.impl.e2e.randomactions.framework.fixture.dto.*; import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; +import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -15,6 +16,7 @@ import org.kie.api.runtime.StatelessKieSession; import org.kie.internal.io.ResourceFactory; +import java.io.FileOutputStream; import java.util.*; import java.util.stream.Collectors; import java.util.stream.IntStream; @@ -70,6 +72,7 @@ void generateRandomFixture() { printResult(); } + @SneakyThrows private void printResult() { Fixture fixture = new Fixture( historyList.getOperations(), @@ -85,8 +88,11 @@ private void printResult() { ) ); - System.out.println("------------------------- Fixture: -----------------------------------"); - System.out.println(new GsonBuilder().setPrettyPrinting().create().toJson(fixture)); + String path = "./src/test/resources/fixture/result.json"; + System.out.println("Fixture has been written to: " + path); + FileOutputStream os = new FileOutputStream(path); + os.write(new GsonBuilder().setPrettyPrinting().create().toJson(fixture).getBytes()); + os.close(); } /** diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_10000_ops.json b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_10000_ops.json new file mode 100644 index 000000000..bcdf5e22e --- /dev/null +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_10000_ops.json @@ -0,0 +1,101397 @@ +{ + "operations": [ + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-3", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-2", + "user-8" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/document.pdf", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [ + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-2", + "user-9" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/balance.xlsx", + "documents/home/presentation.ppt", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-9", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-9", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-2", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/documents/document.pdf", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/presentation.ppt", + "home/important/presentation.ppt", + "documents/balance.xlsx", + "documents/document.pdf", + "presentation.ppt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/presentation.ppt", + "home/important/presentation.ppt", + "documents/balance.xlsx", + "documents/document.pdf", + "presentation.ppt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/file.txt", + "presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-3", + "user-9" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-3", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/document.pdf", + "documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "important/file.txt", + "documents/important/file.txt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-3", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "home/important/document.pdf", + "important/file.txt", + "documents/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "documents/home/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-9", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [ + "documents/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/file.txt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-2" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "home/home/balance.xlsx", + "documents/home/balance.xlsx", + "balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/balance.xlsx", + "home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/presentation.ppt", + "home/presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/presentation.ppt", + "home/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-9" + ] + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/presentation.ppt", + "important/presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/document.pdf", + "presentation.ppt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "important/documents/file.txt", + "home/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "important/presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/file.txt", + "file.txt", + "home/home/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/file.txt", + "home/balance.xlsx", + "important/file.txt", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "presentation.ppt", + "home/balance.xlsx", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/document.pdf", + "home/important/document.pdf", + "file.txt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [ + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/file.txt", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/file.txt", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-3" + ] + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [ + "home/documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "home/home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "presentation.ppt", + "documents/document.pdf", + "home/documents/balance.xlsx", + "home/file.txt", + "important/documents/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/presentation.ppt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-2" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/home/balance.xlsx", + "balance.xlsx", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "home/documents/document.pdf", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-8" + ] + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "home/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/home/presentation.ppt", + "documents/document.pdf", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "home/balance.xlsx", + "home/file.txt", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-9", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "home/home/balance.xlsx", + "important/important/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "home/document.pdf", + "home/file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/balance.xlsx", + "important/important/document.pdf", + "home/home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "presentation.ppt", + "documents/document.pdf", + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "presentation.ppt", + "documents/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/balance.xlsx", + "file.txt", + "home/home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-9", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/balance.xlsx", + "file.txt", + "home/home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/documents/file.txt", + "important/file.txt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/balance.xlsx", + "home/file.txt", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "documents/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [ + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/balance.xlsx", + "documents/presentation.ppt", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "presentation.ppt", + "file.txt", + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "home/important/balance.xlsx", + "documents/presentation.ppt", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-3", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "home/important/balance.xlsx", + "documents/presentation.ppt", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt", + "important/important/balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/documents/file.txt", + "important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/balance.xlsx", + "file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "important/documents/file.txt", + "important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "documents/important/document.pdf", + "home/important/balance.xlsx", + "documents/presentation.ppt", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "file.txt", + "important/home/presentation.ppt", + "important/important/balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "important/documents/file.txt", + "important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-9" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/important/document.pdf", + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "presentation.ppt", + "important/documents/presentation.ppt", + "home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-2", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "documents/presentation.ppt", + "home/documents/presentation.ppt", + "home/documents/document.pdf", + "documents/balance.xlsx", + "file.txt", + "important/balance.xlsx", + "documents/important/document.pdf", + "home/important/balance.xlsx", + "home/important/document.pdf", + "important/home/presentation.ppt", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "home/balance.xlsx", + "file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/balance.xlsx", + "file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9", + "user-8" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/home/presentation.ppt", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-3" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/balance.xlsx", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/important/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "home/documents/document.pdf", + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/balance.xlsx", + "documents/important/file.txt", + "home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "presentation.ppt", + "home/important/file.txt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "file.txt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/balance.xlsx", + "documents/important/file.txt", + "documents/important/presentation.ppt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "file.txt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf", + "file.txt", + "important/home/balance.xlsx", + "important/documents/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [ + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/important/file.txt", + "important/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/home/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "home/balance.xlsx", + "file.txt", + "important/home/balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-3", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "documents/balance.xlsx", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/presentation.ppt", + "important/home/presentation.ppt", + "important/documents/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/home/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "home/balance.xlsx", + "important/home/balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "documents/documents/document.pdf", + "home/balance.xlsx", + "presentation.ppt", + "documents/important/file.txt", + "file.txt", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "documents/file.txt", + "file.txt", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "important/documents/file.txt", + "documents/presentation.ppt", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "file.txt", + "home/important/balance.xlsx", + "home/important/document.pdf", + "important/home/presentation.ppt", + "important/documents/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "documents/file.txt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "documents/documents/document.pdf", + "home/balance.xlsx", + "presentation.ppt", + "documents/important/file.txt", + "file.txt", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/home/presentation.ppt", + "documents/important/balance.xlsx", + "important/important/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "important/documents/file.txt", + "documents/presentation.ppt", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "file.txt", + "home/important/balance.xlsx", + "home/important/document.pdf", + "important/home/presentation.ppt", + "important/documents/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-3", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "file.txt", + "important/home/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "home/important/balance.xlsx", + "documents/presentation.ppt", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "important/home/presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "documents/documents/document.pdf", + "presentation.ppt", + "documents/important/file.txt", + "file.txt", + "home/file.txt", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/presentation.ppt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "file.txt", + "important/home/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "file.txt", + "important/home/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/balance.xlsx", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/home/presentation.ppt", + "documents/important/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "home/important/balance.xlsx", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "important/home/presentation.ppt", + "important/documents/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/home/file.txt", + "documents/documents/document.pdf", + "home/document.pdf", + "documents/file.txt", + "home/balance.xlsx", + "important/home/balance.xlsx", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-9" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/file.txt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/presentation.ppt", + "important/home/presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/presentation.ppt", + "important/presentation.ppt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-2" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [ + "home/important/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/presentation.ppt", + "important/presentation.ppt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "home/important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/file.txt", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "file.txt", + "important/home/presentation.ppt", + "documents/home/balance.xlsx", + "important/documents/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [ + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/documents/file.txt", + "documents/home/file.txt", + "documents/documents/document.pdf", + "home/document.pdf", + "documents/file.txt", + "home/balance.xlsx", + "documents/important/file.txt", + "documents/home/balance.xlsx", + "important/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "important/file.txt", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "important/file.txt", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-9", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "important/file.txt", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/document.pdf", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "important/file.txt", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/file.txt", + "important/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/balance.xlsx", + "important/home/presentation.ppt", + "documents/home/balance.xlsx", + "important/documents/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "presentation.ppt", + "documents/document.pdf", + "important/file.txt", + "home/balance.xlsx", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/file.txt", + "documents/documents/document.pdf", + "documents/file.txt", + "documents/important/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "documents/balance.xlsx", + "home/balance.xlsx", + "important/home/presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "file.txt", + "important/important/balance.xlsx", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-9" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-2", + "user-9" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/documents/document.pdf", + "home/document.pdf", + "documents/file.txt", + "home/home/presentation.ppt", + "home/balance.xlsx", + "important/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/balance.xlsx", + "presentation.ppt", + "important/documents/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "home/important/document.pdf", + "important/important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/document.pdf", + "home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "documents/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/documents/document.pdf", + "home/document.pdf", + "documents/file.txt", + "home/home/presentation.ppt", + "home/balance.xlsx", + "file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/important/document.pdf", + "home/important/presentation.ppt", + "documents/file.txt", + "documents/document.pdf", + "home/balance.xlsx", + "file.txt", + "important/important/balance.xlsx", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "documents/document.pdf", + "important/documents/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "documents/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4", + "user-3" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/important/document.pdf", + "documents/file.txt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-3", + "user-2" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "documents/documents/document.pdf", + "documents/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/documents/document.pdf", + "documents/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/important/document.pdf", + "home/file.txt", + "important/documents/document.pdf", + "important/important/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/documents/document.pdf", + "documents/balance.xlsx", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "important/file.txt", + "documents/document.pdf", + "important/documents/document.pdf", + "balance.xlsx", + "important/home/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "important/presentation.ppt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-8" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "important/important/document.pdf", + "home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "home/documents/balance.xlsx", + "home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf", + "home/documents/presentation.ppt", + "home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-3" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-9" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "important/file.txt", + "documents/document.pdf", + "important/documents/document.pdf", + "balance.xlsx", + "important/home/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-3", + "user-2", + "user-9" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/presentation.ppt", + "home/home/presentation.ppt", + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/file.txt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/important/document.pdf", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/balance.xlsx", + "home/important/document.pdf", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-3" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/document.pdf", + "important/presentation.ppt", + "home/balance.xlsx", + "presentation.ppt", + "file.txt", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "home/home/presentation.ppt", + "documents/file.txt", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/balance.xlsx", + "home/important/document.pdf", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "home/home/document.pdf", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "important/home/balance.xlsx", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/file.txt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "home/document.pdf", + "important/presentation.ppt", + "home/balance.xlsx", + "presentation.ppt", + "file.txt", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/presentation.ppt", + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-3", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/presentation.ppt", + "home/home/document.pdf", + "home/document.pdf", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "important/file.txt", + "file.txt", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "documents/document.pdf", + "presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [ + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "important/presentation.ppt", + "important/file.txt", + "presentation.ppt", + "file.txt", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "documents/documents/document.pdf", + "home/home/presentation.ppt", + "documents/file.txt", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-3", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-4" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "home/home/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-3", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "home/home/document.pdf", + "documents/document.pdf", + "file.txt", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "documents/document.pdf", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/presentation.ppt", + "home/home/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "home/home/presentation.ppt", + "documents/file.txt", + "file.txt", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-9" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/document.pdf", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "home/home/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/documents/document.pdf", + "home/important/document.pdf", + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/important/document.pdf", + "home/home/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "important/presentation.ppt", + "important/file.txt", + "presentation.ppt", + "file.txt", + "home/documents/balance.xlsx", + "important/important/balance.xlsx", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "documents/presentation.ppt", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "important/home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/important/document.pdf", + "home/home/document.pdf", + "documents/presentation.ppt", + "documents/balance.xlsx", + "home/important/document.pdf", + "file.txt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/file.txt", + "file.txt", + "documents/documents/presentation.ppt", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx", + "home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/presentation.ppt", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "documents/balance.xlsx", + "documents/document.pdf", + "presentation.ppt", + "home/home/balance.xlsx", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/file.txt", + "file.txt", + "documents/documents/presentation.ppt", + "documents/important/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-3", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/balance.xlsx", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "home/home/document.pdf", + "home/balance.xlsx", + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/home/file.txt", + "documents/presentation.ppt", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "important/home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-3", + "user-9", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "home/home/document.pdf", + "home/balance.xlsx", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "home/home/document.pdf", + "home/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/balance.xlsx", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-2", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "home/home/document.pdf", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "document.pdf", + "documents/balance.xlsx", + "presentation.ppt", + "file.txt", + "home/home/file.txt", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "important/file.txt", + "file.txt", + "documents/documents/file.txt", + "documents/documents/presentation.ppt", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "documents/presentation.ppt", + "home/home/document.pdf", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "documents/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-9", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/file.txt", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/important/balance.xlsx", + "important/presentation.ppt", + "important/file.txt", + "presentation.ppt", + "important/home/file.txt", + "home/file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/home/file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/documents/file.txt", + "important/file.txt", + "file.txt", + "important/documents/balance.xlsx", + "documents/documents/presentation.ppt", + "balance.xlsx", + "important/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5" + ] + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-9" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "home/home/document.pdf", + "important/presentation.ppt", + "home/balance.xlsx", + "documents/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "home/presentation.ppt", + "important/file.txt", + "file.txt", + "important/documents/balance.xlsx", + "documents/documents/presentation.ppt", + "home/file.txt", + "balance.xlsx", + "important/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "important/file.txt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/important/presentation.ppt", + "file.txt", + "important/home/file.txt", + "documents/home/balance.xlsx", + "home/file.txt", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "home/presentation.ppt", + "file.txt", + "important/documents/balance.xlsx", + "home/file.txt", + "documents/documents/presentation.ppt", + "balance.xlsx", + "important/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/important/presentation.ppt", + "file.txt", + "important/home/file.txt", + "documents/home/balance.xlsx", + "home/file.txt", + "home/home/file.txt", + "important/document.pdf", + "balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/file.txt", + "important/documents/balance.xlsx", + "important/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-3", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/documents/file.txt", + "home/presentation.ppt", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "presentation.ppt", + "important/home/balance.xlsx", + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "home/presentation.ppt", + "file.txt", + "documents/documents/presentation.ppt", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/documents/file.txt", + "home/presentation.ppt", + "documents/documents/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "important/home/balance.xlsx", + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "presentation.ppt", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "documents/balance.xlsx", + "important/file.txt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-9", + "user-8" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt", + "important/file.txt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/home/file.txt", + "important/home/presentation.ppt", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-8" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-9", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/documents/file.txt", + "home/presentation.ppt", + "documents/file.txt", + "presentation.ppt", + "file.txt", + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [ + "home/important/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "documents/documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/home/presentation.ppt", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-3", + "user-2" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/documents/file.txt", + "home/presentation.ppt", + "documents/file.txt", + "important/file.txt", + "file.txt", + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/home/document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-9" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-3", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/important/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "file.txt", + "home/file.txt", + "home/home/file.txt", + "important/important/file.txt", + "important/balance.xlsx", + "documents/home/balance.xlsx", + "important/home/presentation.ppt", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/presentation.ppt", + "documents/file.txt", + "important/file.txt", + "home/home/balance.xlsx", + "documents/documents/file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/important/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "file.txt", + "home/file.txt", + "home/home/file.txt", + "important/important/file.txt", + "important/balance.xlsx", + "documents/home/balance.xlsx", + "important/home/presentation.ppt", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/document.pdf", + "home/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/home/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/presentation.ppt", + "documents/file.txt", + "important/file.txt", + "home/home/balance.xlsx", + "home/file.txt", + "home/home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/home/presentation.ppt", + "documents/important/balance.xlsx", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "home/presentation.ppt", + "documents/presentation.ppt", + "important/file.txt", + "home/home/balance.xlsx", + "home/file.txt", + "home/home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "important/important/document.pdf", + "important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/important/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "important/file.txt", + "file.txt", + "home/file.txt", + "home/home/file.txt", + "important/important/file.txt", + "important/balance.xlsx", + "documents/home/balance.xlsx", + "important/home/presentation.ppt", + "important/documents/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "important/important/document.pdf", + "important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/important/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/important/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "important/presentation.ppt", + "documents/balance.xlsx", + "file.txt", + "home/file.txt", + "home/home/file.txt", + "important/balance.xlsx", + "presentation.ppt", + "important/documents/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf", + "home/documents/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/documents/file.txt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "important/documents/balance.xlsx", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "dirContent": [ + "home/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "presentation.ppt", + "file.txt", + "important/documents/balance.xlsx", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "important/presentation.ppt", + "important/file.txt", + "home/home/balance.xlsx", + "file.txt", + "home/file.txt", + "home/home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-8", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/presentation.ppt", + "important/file.txt", + "file.txt", + "home/documents/balance.xlsx", + "documents/documents/presentation.ppt", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "home/important/balance.xlsx", + "home/document.pdf", + "documents/balance.xlsx", + "presentation.ppt", + "documents/document.pdf", + "home/file.txt", + "home/home/file.txt", + "important/documents/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-9" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "important/presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "documents/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "presentation.ppt", + "documents/documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "document.pdf", + "important/documents/file.txt", + "home/presentation.ppt", + "documents/presentation.ppt", + "home/home/presentation.ppt", + "important/file.txt", + "file.txt", + "home/documents/balance.xlsx", + "documents/documents/presentation.ppt", + "balance.xlsx", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "presentation.ppt", + "documents/documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/document.pdf", + "important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/document.pdf", + "documents/documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "important/documents/balance.xlsx", + "important/important/balance.xlsx", + "balance.xlsx", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt", + "important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/file.txt", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "presentation.ppt", + "documents/documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-7" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "presentation.ppt", + "file.txt", + "documents/documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/file.txt", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-4", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/documents/file.txt", + "important/presentation.ppt", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "important/presentation.ppt", + "documents/balance.xlsx", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "dirContent": [ + "documents/home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "important/documents/balance.xlsx", + "important/important/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "presentation.ppt", + "home/important/document.pdf", + "file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "documents/documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "documents/documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "documents/presentation.ppt", + "home/document.pdf", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "important/file.txt", + "home/file.txt", + "important/documents/document.pdf", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "documents/presentation.ppt", + "home/document.pdf", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "important/file.txt", + "home/file.txt", + "important/documents/document.pdf", + "important/document.pdf", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "home/important/document.pdf", + "documents/documents/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/balance.xlsx", + "important/documents/file.txt", + "documents/presentation.ppt", + "important/presentation.ppt", + "presentation.ppt", + "file.txt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "home/document.pdf", + "home/balance.xlsx", + "home/home/balance.xlsx", + "home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/home/presentation.ppt", + "documents/presentation.ppt", + "home/home/presentation.ppt", + "important/presentation.ppt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/file.txt", + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/home/presentation.ppt", + "documents/presentation.ppt", + "home/home/presentation.ppt", + "important/presentation.ppt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "home/important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/home/presentation.ppt", + "documents/presentation.ppt", + "home/home/presentation.ppt", + "presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/home/presentation.ppt", + "presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/presentation.ppt", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "documents/presentation.ppt", + "important/presentation.ppt", + "home/documents/presentation.ppt", + "presentation.ppt", + "file.txt", + "important/important/document.pdf", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-5", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/home/presentation.ppt", + "important/presentation.ppt", + "important/file.txt", + "home/home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [ + "important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "presentation.ppt", + "home/important/document.pdf", + "important/home/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/presentation.ppt", + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "important/presentation.ppt", + "important/file.txt", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-4", + "user-2" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "home/home/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "home/balance.xlsx", + "presentation.ppt", + "important/home/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/balance.xlsx", + "documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "important/file.txt", + "home/home/balance.xlsx", + "home/documents/file.txt", + "home/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "important/file.txt", + "home/home/balance.xlsx", + "home/documents/file.txt", + "home/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "home/document.pdf", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "documents/documents/file.txt", + "important/important/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "presentation.ppt", + "home/home/balance.xlsx", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "home/document.pdf", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "important/important/document.pdf", + "home/home/file.txt", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/home/presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "home/document.pdf", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "important/important/document.pdf", + "home/home/file.txt", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/home/presentation.ppt", + "important/documents/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "file.txt", + "important/documents/presentation.ppt", + "balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "presentation.ppt", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/documents/file.txt", + "home/document.pdf", + "important/presentation.ppt", + "home/documents/document.pdf", + "important/documents/balance.xlsx", + "important/documents/presentation.ppt", + "home/home/file.txt", + "balance.xlsx", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "file.txt", + "important/documents/presentation.ppt", + "balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-9", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "file.txt", + "important/documents/presentation.ppt", + "balance.xlsx", + "documents/important/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "file.txt", + "important/documents/presentation.ppt", + "balance.xlsx", + "documents/important/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt", + "documents/important/document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "important/presentation.ppt", + "home/documents/document.pdf", + "documents/document.pdf", + "important/documents/balance.xlsx", + "important/documents/presentation.ppt", + "important/home/presentation.ppt", + "balance.xlsx", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "home/balance.xlsx", + "file.txt", + "important/documents/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/important/document.pdf", + "presentation.ppt", + "home/balance.xlsx", + "file.txt", + "important/documents/presentation.ppt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/balance.xlsx", + "home/presentation.ppt", + "documents/important/document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-3", + "user-9", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "home/home/file.txt", + "home/file.txt", + "home/documents/file.txt", + "home/document.pdf", + "presentation.ppt", + "important/important/document.pdf", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-3" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "dirContent": [ + "important/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "important/balance.xlsx", + "home/presentation.ppt", + "documents/important/document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/balance.xlsx", + "documents/important/balance.xlsx", + "important/file.txt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "documents/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/important/balance.xlsx", + "important/file.txt", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "documents/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-4" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-4", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [ + "home/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "important/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/document.pdf", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [ + "documents/home/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "documents/presentation.ppt", + "important/presentation.ppt", + "documents/document.pdf", + "presentation.ppt", + "important/documents/balance.xlsx", + "file.txt", + "home/home/file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "home/documents/presentation.ppt", + "important/file.txt", + "presentation.ppt", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-2", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "home/documents/document.pdf", + "presentation.ppt", + "home/balance.xlsx", + "important/documents/presentation.ppt", + "file.txt", + "home/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/balance.xlsx", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "documents/presentation.ppt", + "documents/file.txt", + "home/documents/document.pdf", + "presentation.ppt", + "home/balance.xlsx", + "important/documents/presentation.ppt", + "file.txt", + "home/file.txt", + "balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/important/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "file.txt", + "recipients": [ + "user-0" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-2", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "home/documents/presentation.ppt", + "presentation.ppt", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/presentation.ppt", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "home/documents/presentation.ppt", + "presentation.ppt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/presentation.ppt", + "documents/important/balance.xlsx", + "home/balance.xlsx", + "presentation.ppt", + "important/important/document.pdf", + "home/file.txt", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-4", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "balance.xlsx", + "recipients": [ + "user-5", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "home/documents/presentation.ppt", + "presentation.ppt", + "file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx", + "result": { + "dirContent": [ + "documents/important/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/file.txt", + "documents/home/balance.xlsx", + "balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-4", + "user-9", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "presentation.ppt", + "documents/documents/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "documents/documents/document.pdf", + "home/document.pdf", + "important/presentation.ppt", + "documents/document.pdf", + "home/home/file.txt", + "home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf", + "recipients": [ + "user-6" + ] + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "presentation.ppt", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/file.txt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/file.txt", + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "document.pdf", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1" + ] + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/important/document.pdf", + "documents/presentation.ppt", + "home/documents/document.pdf", + "home/balance.xlsx", + "important/documents/presentation.ppt", + "file.txt", + "important/important/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "home/document.pdf", + "important/important/balance.xlsx", + "balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [ + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "presentation.ppt", + "balance.xlsx", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [ + "documents/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/presentation.ppt", + "home/balance.xlsx", + "file.txt", + "important/important/balance.xlsx", + "important/documents/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "documents/presentation.ppt", + "documents/file.txt", + "documents/home/balance.xlsx", + "home/file.txt", + "documents/home/document.pdf", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/presentation.ppt", + "file.txt", + "important/important/balance.xlsx", + "important/documents/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/file.txt", + "documents/presentation.ppt", + "file.txt", + "important/important/balance.xlsx", + "important/documents/document.pdf", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-8", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "important/file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "presentation.ppt", + "documents/important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "important/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/", + "result": { + "dirContent": [ + "important/important/document.pdf", + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/document.pdf", + "presentation.ppt", + "documents/important/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/file.txt", + "home/document.pdf", + "home/documents/presentation.ppt", + "documents/balance.xlsx", + "home/balance.xlsx", + "file.txt", + "important/important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-9", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "file.txt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "important/home/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/documents/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/file.txt", + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/file.txt", + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-5" + ] + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "important/presentation.ppt", + "documents/document.pdf", + "home/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "file.txt", + "recipients": [ + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/home/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "location": "documents/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "documents/important/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/important/balance.xlsx", + "home/balance.xlsx", + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "documents/important/file.txt", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/home/file.txt", + "home/documents/presentation.ppt", + "documents/balance.xlsx", + "home/balance.xlsx", + "file.txt", + "important/home/file.txt", + "important/important/document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/document.pdf", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/home/file.txt", + "documents/presentation.ppt", + "presentation.ppt", + "important/home/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx", + "result": { + "dirContent": [ + "important/important/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/file.txt", + "documents/home/balance.xlsx", + "documents/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/home/file.txt", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [ + "important/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "presentation.ppt", + "recipients": [ + "user-5", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/document.pdf", + "documents/file.txt", + "important/presentation.ppt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-2", + "user-9" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "content": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/file.txt", + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/file.txt", + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "location": "important/documents/balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt", + "home/documents/file.txt", + "documents/presentation.ppt", + "documents/file.txt", + "file.txt", + "important/documents/balance.xlsx", + "documents/home/balance.xlsx", + "home/file.txt", + "documents/documents/presentation.ppt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "dirContent": [ + "documents/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "content": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/file.txt", + "result": { + "content": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + } + ], + "userPrivateSpace": { + "user-1": { + "home/balance.xlsx": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "home/important/balance.xlsx": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + } + }, + "user-0": { + "important/important/file.txt": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + }, + "user-5": { + "presentation.ppt": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "home/balance.xlsx": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + } + }, + "user-4": {}, + "user-3": { + "presentation.ppt": { + "id": "198cad50-3f44-4465-b89a-4d56f8320314" + }, + "documents/important/file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "documents/home/document.pdf": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + }, + "user-2": { + "home/documents/file.txt": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "documents/file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "home/documents/balance.xlsx": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "documents/documents/balance.xlsx": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + }, + "user-9": { + "documents/home/file.txt": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "documents/presentation.ppt": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + }, + "file.txt": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "documents/important/file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "important/home/document.pdf": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + }, + "user-8": { + "home/presentation.ppt": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "home/documents/file.txt": { + "id": "a01d67af-b2aa-46a5-9f37-f8e42290b199" + }, + "documents/presentation.ppt": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + }, + "documents/file.txt": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "file.txt": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "important/documents/balance.xlsx": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "documents/home/balance.xlsx": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "home/file.txt": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "documents/documents/presentation.ppt": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + }, + "important/important/file.txt": { + "id": "42155e4b-9d1b-4a98-a8cf-b255636ef0ff" + } + }, + "user-7": { + "documents/home/file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "home/documents/presentation.ppt": { + "id": "439695cd-5eec-46f9-a60c-673dd5e5a186" + }, + "documents/balance.xlsx": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "home/balance.xlsx": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "important/documents/presentation.ppt": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "documents/document.pdf": { + "id": "84bca963-8c15-43ca-8163-001a3c996177" + }, + "important/home/presentation.ppt": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + }, + "important/important/document.pdf": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + }, + "user-6": {} + }, + "userPublicSpace": { + "user-1": { + "document.pdf": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "presentation.ppt": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "file.txt": { + "id": "d96ca580-2bc8-4021-8f00-9974a30b44b9" + } + }, + "user-0": { + "presentation.ppt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "balance.xlsx": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + }, + "user-5": { + "document.pdf": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "presentation.ppt": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "balance.xlsx": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + }, + "user-4": { + "presentation.ppt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + }, + "user-3": { + "document.pdf": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "presentation.ppt": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + }, + "user-2": { + "presentation.ppt": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + }, + "user-9": { + "presentation.ppt": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "balance.xlsx": { + "id": "fd00d6f4-35c5-4ff5-b156-76408f21325d" + } + }, + "user-8": { + "document.pdf": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "balance.xlsx": { + "id": "72349cb8-a437-4de9-a98c-0c8f5180f18b" + } + }, + "user-7": { + "file.txt": { + "id": "6167d5ac-a6bd-462c-bd77-702f4cfaf50e" + } + }, + "user-6": { + "presentation.ppt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + }, + "file.txt": { + "id": "27bcd082-8280-4ea5-a256-41ec3453adb0" + } + } + } +} \ No newline at end of file diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_1000_ops.json b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_1000_ops.json new file mode 100644 index 000000000..82b4340f8 --- /dev/null +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_1000_ops.json @@ -0,0 +1,10280 @@ +{ + "operations": [ + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "home/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-2", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-3", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-4", + "user-2" + ] + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "balance.xlsx", + "recipients": [ + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/important/document.pdf", + "presentation.ppt", + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/", + "result": { + "dirContent": [ + "important/documents/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-3" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-7", + "user-6" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4" + ] + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "file.txt", + "recipients": [ + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-9", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/important/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "important/presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt", + "home/important/file.txt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/home/balance.xlsx" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/important/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [ + "documents/important/document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx", + "recipients": [ + "user-0", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "documents/important/file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "home/home/document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/file.txt", + "home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/presentation.ppt", + "home/documents/document.pdf", + "balance.xlsx", + "documents/important/presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/important/document.pdf", + "file.txt", + "home/home/file.txt", + "home/file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "file.txt", + "recipients": [ + "user-2" + ] + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "dirContent": [ + "home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "balance.xlsx", + "recipients": [ + "user-3", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/documents/presentation.ppt", + "home/balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-3", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/balance.xlsx" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "document.pdf" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/balance.xlsx", + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-2", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "important/home/presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "document.pdf", + "recipients": [ + "user-0", + "user-9", + "user-8" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/important/presentation.ppt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/file.txt" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-2", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "file.txt", + "recipients": [ + "user-0", + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "file.txt", + "recipients": [ + "user-3", + "user-2", + "user-8" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "file.txt" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-2", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "important/documents/document.pdf" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "home/documents/document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-4", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "important/documents/file.txt" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/documents/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-3", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/documents/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "documents/documents/balance.xlsx" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "documents/documents/file.txt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/documents/", + "result": { + "dirContent": [ + "home/documents/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/home/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/documents/", + "result": { + "dirContent": [ + "documents/documents/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/", + "result": { + "dirContent": [ + "important/document.pdf" + ] + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/documents/presentation.ppt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "balance.xlsx", + "recipients": [ + "user-4", + "user-3", + "user-9" + ] + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "important/balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "presentation.ppt", + "recipients": [ + "user-9", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-4", + "user-6" + ] + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "important/important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/documents/file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "document.pdf", + "recipients": [ + "user-2", + "user-9" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/home/balance.xlsx", + "home/file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "home/document.pdf" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/home/", + "result": { + "dirContent": [ + "important/home/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "important/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "document.pdf" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "documents/important/document.pdf" + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "home/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-2" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "important/file.txt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/balance.xlsx", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-2", + "user-8", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "documents/home/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "documents/document.pdf" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "dirContent": [ + "documents/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "document.pdf" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/home/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "home/important/document.pdf" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/file.txt" + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "important/documents/presentation.ppt" + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt", + "recipients": [ + "user-3", + "user-2", + "user-9", + "user-8", + "user-7" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "home/home/file.txt" + }, + { + "userId": "user-9", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "documents/balance.xlsx" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/presentation.ppt", + "result": { + "dirContent": [ + "home/important/presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "home/home/balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/important/document.pdf" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "important/balance.xlsx", + "home/important/presentation.ppt", + "important/file.txt", + "documents/documents/balance.xlsx", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [ + "presentation.ppt" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3" + ] + }, + { + "userId": "user-0", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "documents/documents/document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/document.pdf", + "result": { + "content": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + } + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-7" + ] + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/", + "result": { + "dirContent": [ + "home/home/balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-5", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "file.txt" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-4", + "user-9", + "user-7" + ] + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "documents/document.pdf", + "home/important/document.pdf", + "important/document.pdf" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx", + "result": { + "content": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/document.pdf" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/documents/document.pdf", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "documents/file.txt" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "home/presentation.ppt" + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/", + "result": { + "dirContent": [ + "home/presentation.ppt" + ] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "important/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/home/file.txt", + "result": { + "dirContent": [ + "home/home/file.txt" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/balance.xlsx" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "documents/file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/documents/file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/home/file.txt" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "file.txt", + "recipients": [ + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-9", + "type": "LIST", + "storageType": "PRIVATE", + "location": "home/important/", + "result": { + "dirContent": [ + "home/important/presentation.ppt" + ] + } + }, + { + "userId": "user-3", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "documents/documents/file.txt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-9", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/documents/balance.xlsx", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-5", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "presentation.ppt", + "recipients": [ + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "documents/presentation.ppt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "important/important/document.pdf" + }, + { + "userId": "user-6", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "important/important/balance.xlsx" + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "home/important/document.pdf", + "important/important/document.pdf", + "important/document.pdf" + ] + } + }, + { + "userId": "user-2", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/presentation.ppt", + "home/document.pdf", + "important/file.txt", + "home/home/balance.xlsx", + "important/documents/presentation.ppt" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "INBOX", + "location": "balance.xlsx" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "document.pdf", + "result": { + "dirContent": [ + "document.pdf" + ] + } + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "INBOX", + "location": "file.txt" + }, + { + "userId": "user-3", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-1", + "type": "READ", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-1", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "location": "presentation.ppt", + "recipients": [ + "user-1", + "user-0", + "user-4", + "user-8" + ] + }, + { + "userId": "user-8", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "important/important/file.txt" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/home/document.pdf", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-6", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-5", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-2", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "location": "important/document.pdf" + }, + { + "userId": "user-1", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "documents/important/document.pdf", + "presentation.ppt", + "important/document.pdf" + ] + } + }, + { + "userId": "user-8", + "type": "LIST", + "storageType": "PRIVATE", + "location": "", + "result": { + "dirContent": [ + "documents/presentation.ppt", + "home/documents/document.pdf", + "presentation.ppt", + "home/home/file.txt", + "important/important/file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "PRIVATE", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "file.txt" + }, + { + "userId": "user-5", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-7", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "location": "documents/balance.xlsx" + }, + { + "userId": "user-1", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "document.pdf" + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [ + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "important/document.pdf" + }, + { + "userId": "user-7", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + } + }, + { + "userId": "user-5", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-3", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "location": "file.txt", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-4", + "user-3", + "user-2", + "user-8", + "user-7", + "user-6" + ] + }, + { + "userId": "user-3", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "balance.xlsx" + }, + { + "userId": "user-4", + "type": "WRITE", + "storageType": "PRIVATE", + "contentId": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "location": "presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "PRIVATE", + "location": "balance.xlsx", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-0", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "document.pdf", + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-1", + "type": "LIST", + "storageType": "INBOX", + "location": "", + "result": { + "dirContent": [ + "presentation.ppt", + "file.txt", + "balance.xlsx" + ] + } + }, + { + "userId": "user-7", + "type": "LIST", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "dirContent": [ + "file.txt" + ] + } + }, + { + "userId": "user-4", + "type": "LIST", + "storageType": "INBOX", + "location": "presentation.ppt", + "result": { + "dirContent": [] + } + }, + { + "userId": "user-3", + "type": "READ", + "storageType": "PRIVATE", + "location": "home/presentation.ppt", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-4", + "type": "READ", + "storageType": "PRIVATE", + "location": "presentation.ppt", + "result": { + "content": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + } + } + }, + { + "userId": "user-6", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "home/presentation.ppt" + }, + { + "userId": "user-6", + "type": "LIST", + "storageType": "PRIVATE", + "location": "documents/home/", + "result": { + "dirContent": [ + "documents/home/document.pdf" + ] + } + }, + { + "userId": "user-7", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "presentation.ppt" + }, + { + "userId": "user-4", + "type": "DELETE", + "storageType": "PRIVATE", + "location": "balance.xlsx" + }, + { + "userId": "user-0", + "type": "READ", + "storageType": "INBOX", + "location": "document.pdf", + "result": { + "content": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + } + }, + { + "userId": "user-6", + "type": "READ", + "storageType": "INBOX", + "location": "balance.xlsx", + "result": { + "content": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + { + "userId": "user-2", + "type": "READ", + "storageType": "INBOX", + "location": "file.txt", + "result": { + "content": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + } + }, + { + "userId": "user-2", + "type": "DELETE", + "storageType": "INBOX", + "location": "presentation.ppt" + }, + { + "userId": "user-5", + "type": "DELETE", + "storageType": "INBOX", + "location": "document.pdf" + }, + { + "userId": "user-9", + "type": "READ", + "storageType": "PRIVATE", + "location": "important/balance.xlsx", + "result": { + "content": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + } + } + }, + { + "userId": "user-9", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "location": "document.pdf", + "recipients": [ + "user-1", + "user-0", + "user-5", + "user-3", + "user-2", + "user-9", + "user-7", + "user-6" + ] + }, + { + "userId": "user-8", + "type": "READ", + "storageType": "PRIVATE", + "location": "documents/presentation.ppt", + "result": { + "content": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + }, + { + "userId": "user-8", + "type": "SHARE", + "storageType": "INBOX", + "contentId": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "location": "balance.xlsx", + "recipients": [ + "user-1", + "user-4", + "user-3", + "user-2", + "user-9", + "user-8", + "user-7", + "user-6" + ] + } + ], + "userPrivateSpace": { + "user-1": { + "balance.xlsx": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + }, + "user-0": { + "document.pdf": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "documents/documents/document.pdf": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + } + }, + "user-5": {}, + "user-4": { + "document.pdf": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "home/important/document.pdf": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "presentation.ppt": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "important/important/document.pdf": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "important/document.pdf": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + } + }, + "user-3": { + "home/presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "documents/file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "file.txt": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "important/important/balance.xlsx": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-2": { + "document.pdf": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + }, + "documents/presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "home/document.pdf": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "important/file.txt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "home/home/balance.xlsx": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "important/documents/presentation.ppt": { + "id": "8fae5747-5ae1-4231-a47d-0861c2f20c15" + }, + "important/document.pdf": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + }, + "user-9": { + "important/balance.xlsx": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "home/important/presentation.ppt": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "important/file.txt": { + "id": "fdb8199d-fc99-48c3-829e-2dd5eb24ea31" + }, + "documents/documents/balance.xlsx": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "important/important/file.txt": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + }, + "user-8": { + "documents/presentation.ppt": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "home/documents/document.pdf": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "presentation.ppt": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "home/home/file.txt": { + "id": "09f6cf0d-9177-47d1-b3b5-96dbde0fa3ed" + }, + "important/important/file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + } + }, + "user-7": { + "documents/important/document.pdf": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "documents/balance.xlsx": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + } + }, + "user-6": { + "document.pdf": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "important/documents/file.txt": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + }, + "balance.xlsx": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + }, + "documents/home/document.pdf": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + } + }, + "userPublicSpace": { + "user-1": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-0": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "4019cb64-8f50-407c-9304-ad7c07a99dc8" + } + }, + "user-5": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "cccb854d-18fa-4a27-bc3c-b98c4f1abc73" + } + }, + "user-4": { + "document.pdf": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-3": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-2": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-9": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-8": { + "document.pdf": { + "id": "646cdfa8-de05-4523-94d5-76caaef1a7bd" + }, + "presentation.ppt": { + "id": "5553d83d-d8e6-41c8-97f6-35b845f2c8c2" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-7": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + }, + "user-6": { + "document.pdf": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "presentation.ppt": { + "id": "fc016b80-5134-45d9-aaa1-fd253410f332" + }, + "file.txt": { + "id": "027e0351-d60c-44d9-a63e-5ba177cb6e73" + }, + "balance.xlsx": { + "id": "c2c76538-d302-45e2-b2a1-75608dd699ba" + } + } + } +} \ No newline at end of file From 522234f9a248ce3d23cf16ba664fc3690cc72269 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 30 Jul 2019 19:03:31 +0200 Subject: [PATCH 02/42] DOC-236 surefire plugin --- .../datasafe-business-tests-random-actions/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml index a12a503e8..d02c1a31d 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml @@ -176,6 +176,16 @@ + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + once + -Xmx${ram}m + + From cc9501cf7d666508bcf7835c0eebfc6cc0af8f44 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Wed, 31 Jul 2019 13:51:53 +0200 Subject: [PATCH 03/42] DOC-236 surefire plugin --- .../datasafe-business-tests-random-actions/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml index d02c1a31d..5c132b036 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml @@ -183,7 +183,7 @@ 2.22.2 once - -Xmx${ram}m + ${testArgs} From 7e2a01d6aec3d3c9db61d7aac8090983724b0d82 Mon Sep 17 00:00:00 2001 From: Ihor Yatsenko Date: Fri, 9 Aug 2019 10:05:41 +0200 Subject: [PATCH 04/42] DOC-239: AES GCM encryption --- .../impl/cmsencryption/DefaultCMSEncryptionConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/DefaultCMSEncryptionConfig.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/DefaultCMSEncryptionConfig.java index 525ce7356..1dd0c3d58 100644 --- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/DefaultCMSEncryptionConfig.java +++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/DefaultCMSEncryptionConfig.java @@ -15,6 +15,6 @@ public class DefaultCMSEncryptionConfig implements CMSEncryptionConfig { @Inject public DefaultCMSEncryptionConfig() { - algorithm = DatasafeCryptoAlgorithm.AES256_CBC; + algorithm = DatasafeCryptoAlgorithm.AES256_GCM; } } From 9b3c386477d3f3fba98689cbe53de8ed949c580d Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Mon, 12 Aug 2019 11:11:59 +0200 Subject: [PATCH 05/42] test adaptation for ceph --- .../teststorage/WithStorageProvider.java | 29 ++++++++++++++----- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index 0dccbcf9e..de94cce75 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -1,5 +1,7 @@ package de.adorsys.datasafe.teststorage; +import com.amazonaws.ClientConfiguration; +import com.amazonaws.Protocol; import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.client.builder.AwsClientBuilder; @@ -7,6 +9,7 @@ import com.amazonaws.services.s3.AmazonS3ClientBuilder; import com.amazonaws.services.s3.model.BucketVersioningConfiguration; import com.amazonaws.services.s3.model.SetBucketVersioningConfigurationRequest; +import com.amazonaws.util.StringUtils; import com.google.common.base.Strings; import com.google.common.base.Suppliers; import de.adorsys.datasafe.storage.api.StorageService; @@ -68,6 +71,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String amazonSecretAccessKey = readPropOrEnv("AWS_SECRET_KEY"); private static String amazonRegion = readPropOrEnv("AWS_REGION", "eu-central-1"); private static String amazonBucket = readPropOrEnv("AWS_BUCKET", "adorsys-docusafe"); + private static String amazonUrl = readPropOrEnv("AWS_URL"); private static String amazonMappedUrl; private static GenericContainer minioContainer; @@ -269,14 +273,25 @@ private static void initS3() { return; } - amazonS3 = AmazonS3ClientBuilder.standard() - .withCredentials(new AWSStaticCredentialsProvider( - new BasicAWSCredentials(amazonAccessKeyID, amazonSecretAccessKey)) - ) - .withRegion(amazonRegion) - .build(); + AmazonS3ClientBuilder amazonS3ClientBuilder = AmazonS3ClientBuilder.standard() + .withCredentials(new AWSStaticCredentialsProvider( + new BasicAWSCredentials(amazonAccessKeyID, amazonSecretAccessKey)) + ); + + if (StringUtils.isNullOrEmpty(amazonUrl)) { + amazonS3ClientBuilder = amazonS3ClientBuilder.withRegion(amazonRegion); + amazonMappedUrl = "s3://" + amazonBucket + "/" + bucketPath + "/"; + } else { + amazonS3ClientBuilder = amazonS3ClientBuilder + .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP)) + .withEndpointConfiguration( + new AwsClientBuilder.EndpointConfiguration(amazonUrl, "US") + ) + .enablePathStyleAccess(); + amazonMappedUrl = "http://" + amazonBucket + "." + amazonUrl; + } + amazonS3 = amazonS3ClientBuilder.build(); - amazonMappedUrl = "s3://" + amazonBucket + "/" + bucketPath + "/"; log.info("Amazon napped URL:" + amazonMappedUrl); } From 970010182a423ed2750c2ea5201b2b66a00ffdfb Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 13 Aug 2019 18:29:14 +0200 Subject: [PATCH 06/42] multi bucket test --- .../RandomActionsOnMultiBucketTest.java | 47 +++++++++++++++++++ .../api/UserBasedDelegatingStorage.java | 30 ++++++++++++ .../teststorage/WithStorageProvider.java | 5 ++ 3 files changed, 82 insertions(+) create mode 100644 datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java create mode 100644 datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java new file mode 100644 index 000000000..2bbd2bb0d --- /dev/null +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -0,0 +1,47 @@ +package de.adorsys.datasafe.business.impl.e2e.randomactions; + +import de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions; +import de.adorsys.datasafe.business.impl.e2e.randomactions.framework.services.StatisticService; +import de.adorsys.datasafe.business.impl.service.DaggerDefaultDatasafeServices; +import de.adorsys.datasafe.business.impl.service.DefaultDatasafeServices; +import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig; +import de.adorsys.datasafe.storage.api.UserBasedDelegatingStorage; +import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.api.condition.DisabledIfSystemProperty; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; + +import static de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions.DISABLE_RANDOM_ACTIONS_TEST; + +@Slf4j +@DisabledIfSystemProperty(named = DISABLE_RANDOM_ACTIONS_TEST, matches = "true") +public class RandomActionsOnMultiBucketTest extends BaseRandomActions { + @ParameterizedTest + @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") + void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) { + DefaultDatasafeServices datasafeServices = datasafeServices(descriptor); + StatisticService statisticService = new StatisticService(); + + executeTest( + smallFixture(), + descriptor.getName(), + filesizeInMb, + threadCount, + datasafeServices.userProfile(), + datasafeServices.privateService(), + datasafeServices.inboxService(), + statisticService + ); + } + + private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) { + + descriptor.getStorageService().get(); + + return DaggerDefaultDatasafeServices + .builder() + .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT")) + .storage(new UserBasedDelegatingStorage(storageServiceByBucket())) + .build(); + } +} diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java new file mode 100644 index 000000000..a0f7577e7 --- /dev/null +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java @@ -0,0 +1,30 @@ +package de.adorsys.datasafe.storage.api; + +import de.adorsys.datasafe.types.api.resource.AbsoluteLocation; +import de.adorsys.datasafe.types.api.resource.Uri; + +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.function.Function; + +public class UserBasedDelegatingStorage extends BaseDelegatingStorage { + private final Map clientByBucket = new ConcurrentHashMap<>(); + + public UserBasedDelegatingStorage(Function storageServiceBuilder) { + this.storageServiceBuilder = storageServiceBuilder; + } + + // Builder to create S3 or other kind of Storage service + private final Function storageServiceBuilder; + + @Override + protected StorageService service(AbsoluteLocation location) { + Uri uri = location.location(); + String[] parts = uri.getPath().replaceAll("^/", "").split("/"); + String userName = "profiles".equals(parts[1]) ? parts[3] : parts[2]; + String userNumber = userName.split("-")[1]; + int userNum = Integer.parseInt(userNumber); + String bucketName = "datasafe-test" + (userNum % 3 + 1); + return clientByBucket.computeIfAbsent(bucketName, storageServiceBuilder); + } +} diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index de94cce75..db0da54b4 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -37,6 +37,7 @@ import java.util.UUID; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; +import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Stream; @@ -239,6 +240,10 @@ private static boolean skipCeph() { return true; } + protected static Function storageServiceByBucket() { + return bucketName -> new S3StorageService(amazonS3, bucketName, EXECUTOR_SERVICE); + } + protected static StorageDescriptor s3() { if (null == amazonAccessKeyID) { return null; From ba94160d6e9cb290d88ee4460e8d2c90a4819635 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Wed, 14 Aug 2019 14:59:20 +0200 Subject: [PATCH 07/42] file sizes and thread numbers from properties --- .../randomactions/framework/BaseRandomActions.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index 3fe6ef34d..c7b1634c3 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -48,8 +48,16 @@ public abstract class BaseRandomActions extends WithStorageProvider { private static final int KILOBYTE_TO_BYTE = 1024; private static final long TIMEOUT = 30L; - private static final Set THREAD_COUNT = ImmutableSet.of(2, 4, 8); - private static final Set FILE_SIZE_K_BYTES = ImmutableSet.of(100, 1024, 10240); // 100KB, 1MB, 10MB + private static String THREADS = readPropOrEnv("THREADS", "2, 4, 8"); + private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100, 1024, 10240"); // in KB + + private static final Set THREAD_COUNT = ImmutableSet.copyOf( + Stream.of(THREADS.split(",")).mapToInt(Integer::parseInt).boxed().collect(Collectors.toSet()) + ); + + private static final Set FILE_SIZE_K_BYTES = ImmutableSet.copyOf( + Stream.of(FILE_SIZES.split(",")).mapToInt(Integer::parseInt).boxed().collect(Collectors.toSet()) + ); @BeforeEach void prepare() { From 270bec7169c7ac8f5b4e208b0193a1f86c850cdb Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Thu, 15 Aug 2019 15:08:19 +0200 Subject: [PATCH 08/42] added thread pool monitoring --- .../teststorage/WithStorageProvider.java | 22 ++++++-- .../monitoring/ThreadPoolStatus.java | 51 +++++++++++++++++++ .../monitoring/ThreadPoolStatusMBean.java | 19 +++++++ 3 files changed, 87 insertions(+), 5 deletions(-) create mode 100644 datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java create mode 100644 datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index db0da54b4..85c279633 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -1,7 +1,5 @@ package de.adorsys.datasafe.teststorage; -import com.amazonaws.ClientConfiguration; -import com.amazonaws.Protocol; import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.client.builder.AwsClientBuilder; @@ -15,6 +13,7 @@ import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; +import de.adorsys.datasafe.teststorage.monitoring.ThreadPoolStatus; import de.adorsys.datasafe.types.api.resource.Uri; import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; import lombok.AllArgsConstructor; @@ -31,12 +30,16 @@ import org.testcontainers.containers.wait.strategy.Wait; import org.testcontainers.shaded.org.apache.commons.io.FileUtils; +import javax.management.MBeanServer; +import javax.management.ObjectName; +import java.lang.management.ManagementFactory; import java.nio.file.Path; import java.time.Duration; import java.util.Objects; import java.util.UUID; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; +import java.util.concurrent.ThreadPoolExecutor; import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Stream; @@ -52,7 +55,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String bucketPath = UUID.randomUUID().toString(); - private static final ExecutorService EXECUTOR_SERVICE = Executors.newFixedThreadPool(5); + private static final ExecutorService EXECUTOR_SERVICE = Executors.newCachedThreadPool(); private static String minioAccessKeyID = "admin"; private static String minioSecretAccessKey = "password"; private static String minioRegion = "eu-central-1"; @@ -108,6 +111,8 @@ static void init(@TempDir Path tempDir) { initS3(); return null; }); + + registerMBean(); } @AfterEach @@ -288,7 +293,6 @@ private static void initS3() { amazonMappedUrl = "s3://" + amazonBucket + "/" + bucketPath + "/"; } else { amazonS3ClientBuilder = amazonS3ClientBuilder - .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP)) .withEndpointConfiguration( new AwsClientBuilder.EndpointConfiguration(amazonUrl, "US") ) @@ -380,7 +384,7 @@ private static void startCeph() { * @param defaultValue Default value if none are present * @return Property value */ - private static String readPropOrEnv(String name, String defaultValue) { + protected static String readPropOrEnv(String name, String defaultValue) { String fromEnv = System.getProperty(name, System.getenv(name)); return null != fromEnv ? fromEnv : defaultValue; } @@ -424,4 +428,12 @@ public enum StorageDescriptorName { CEPH, AMAZON } + + @SneakyThrows + private static void registerMBean() { + ObjectName objectName = new ObjectName("de.adorsys.datasafe:type=basic,name=threadPoolStatus"); + ThreadPoolStatus threadPoolStatus = new ThreadPoolStatus((ThreadPoolExecutor) EXECUTOR_SERVICE); + MBeanServer server = ManagementFactory.getPlatformMBeanServer(); + server.registerMBean(threadPoolStatus, objectName); + } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java new file mode 100644 index 000000000..0b4a63961 --- /dev/null +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java @@ -0,0 +1,51 @@ +package de.adorsys.datasafe.teststorage.monitoring; + +import java.util.concurrent.ThreadPoolExecutor; + +public class ThreadPoolStatus implements ThreadPoolStatusMBean { + private ThreadPoolExecutor executor; + + public ThreadPoolStatus(ThreadPoolExecutor executor) { + this.executor = executor; + } + + @Override + public int getActiveCount() { + return executor.getActiveCount(); + } + + @Override + public long getCompletedTaskCount() { + return executor.getCompletedTaskCount(); + } + + @Override + public int getCorePoolSize() { + return executor.getCorePoolSize(); + } + + @Override + public int getLargestPoolSize() { + return executor.getLargestPoolSize(); + } + + @Override + public int getMaximumPoolSize() { + return executor.getMaximumPoolSize(); + } + + @Override + public int getPoolSize() { + return executor.getPoolSize(); + } + + @Override + public long getTaskCount() { + return executor.getTaskCount(); + } + + @Override + public long getQueuedTaskCount() { + return getTaskCount()-getCompletedTaskCount()-getActiveCount(); + } +} diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java new file mode 100644 index 000000000..512ac00af --- /dev/null +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java @@ -0,0 +1,19 @@ +package de.adorsys.datasafe.teststorage.monitoring; + +public interface ThreadPoolStatusMBean { + int getActiveCount(); + + long getCompletedTaskCount(); + + int getCorePoolSize(); + + int getLargestPoolSize(); + + int getMaximumPoolSize(); + + int getPoolSize(); + + long getTaskCount(); + + long getQueuedTaskCount(); +} \ No newline at end of file From c16e547f38d7b1892d40e90358ab8b914fdd371b Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Thu, 15 Aug 2019 16:46:44 +0200 Subject: [PATCH 09/42] fix multibucket cleanup --- .../RandomActionsOnMultiBucketTest.java | 2 +- .../api/UserBasedDelegatingStorage.java | 7 +++++-- .../teststorage/WithStorageProvider.java | 18 ++++++++++++++---- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java index 2bbd2bb0d..065588d76 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -41,7 +41,7 @@ private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) { return DaggerDefaultDatasafeServices .builder() .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT")) - .storage(new UserBasedDelegatingStorage(storageServiceByBucket())) + .storage(new UserBasedDelegatingStorage(storageServiceByBucket(), amazonBucket)) .build(); } } diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java index a0f7577e7..8456b183e 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java @@ -9,9 +9,11 @@ public class UserBasedDelegatingStorage extends BaseDelegatingStorage { private final Map clientByBucket = new ConcurrentHashMap<>(); + private final String amazonBucket; - public UserBasedDelegatingStorage(Function storageServiceBuilder) { + public UserBasedDelegatingStorage(Function storageServiceBuilder, String amazonBucket) { this.storageServiceBuilder = storageServiceBuilder; + this.amazonBucket = amazonBucket; } // Builder to create S3 or other kind of Storage service @@ -24,7 +26,8 @@ protected StorageService service(AbsoluteLocation location) { String userName = "profiles".equals(parts[1]) ? parts[3] : parts[2]; String userNumber = userName.split("-")[1]; int userNum = Integer.parseInt(userNumber); - String bucketName = "datasafe-test" + (userNum % 3 + 1); + String[] buckets = amazonBucket.split(","); + String bucketName = buckets[userNum % buckets.length]; return clientByBucket.computeIfAbsent(bucketName, storageServiceBuilder); } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index 85c279633..6c8f31088 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -74,7 +74,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String amazonAccessKeyID = readPropOrEnv("AWS_ACCESS_KEY"); private static String amazonSecretAccessKey = readPropOrEnv("AWS_SECRET_KEY"); private static String amazonRegion = readPropOrEnv("AWS_REGION", "eu-central-1"); - private static String amazonBucket = readPropOrEnv("AWS_BUCKET", "adorsys-docusafe"); + protected static String amazonBucket = readPropOrEnv("AWS_BUCKET", "adorsys-docusafe"); private static String amazonUrl = readPropOrEnv("AWS_URL"); private static String amazonMappedUrl; @@ -132,7 +132,12 @@ void cleanup() { } if (null != amazonS3) { - removeObjectFromS3(amazonS3, amazonBucket, bucketPath); + String[] buckets = amazonBucket.split(","); + if (buckets.length > 1) { + Stream.of(buckets).forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath)); + } else { + removeObjectFromS3(amazonS3, amazonBucket, bucketPath); + } } } @@ -288,9 +293,14 @@ private static void initS3() { new BasicAWSCredentials(amazonAccessKeyID, amazonSecretAccessKey)) ); + String[] buckets = amazonBucket.split(","); + if (buckets.length > 1) { + log.info("Using {} buckets:{}", buckets.length, amazonBucket); + } + if (StringUtils.isNullOrEmpty(amazonUrl)) { amazonS3ClientBuilder = amazonS3ClientBuilder.withRegion(amazonRegion); - amazonMappedUrl = "s3://" + amazonBucket + "/" + bucketPath + "/"; + amazonMappedUrl = "s3://" + buckets[0] + "/" + bucketPath + "/"; } else { amazonS3ClientBuilder = amazonS3ClientBuilder .withEndpointConfiguration( @@ -301,7 +311,7 @@ private static void initS3() { } amazonS3 = amazonS3ClientBuilder.build(); - log.info("Amazon napped URL:" + amazonMappedUrl); + log.info("Amazon mapped URL:" + amazonMappedUrl); } private static void startMinio() { From b9a6e4f517a8401c11f268a282e0998c6b8e4519 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Thu, 15 Aug 2019 17:26:59 +0200 Subject: [PATCH 10/42] medium fixture for multi bucket test --- .../impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java index 065588d76..9a3d4ef5c 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -23,7 +23,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo StatisticService statisticService = new StatisticService(); executeTest( - smallFixture(), + mediumFixture(), descriptor.getName(), filesizeInMb, threadCount, From 096e13e5bd16e0ad09db0da7bf66c7b38cb0fa42 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Mon, 19 Aug 2019 15:11:43 +0300 Subject: [PATCH 11/42] DOC-236. Added starvation-controlled executor --- .../impl/e2e/MultiDFSFunctionalityTest.java | 10 ++---- .../MultiDfsWithCredentialsExampleTest.java | 8 ++--- ...DefaultDatasafeOnVersionedStorageTest.java | 4 +-- .../framework/BaseRandomActions.java | 3 +- .../rest/impl/config/DatasafeConfig.java | 8 ++--- .../impl/SimpleDatasafeServiceImpl.java | 5 +-- .../impl/s3/S3SystemStorageServiceTest.java | 8 +++-- .../teststorage/WithStorageProvider.java | 6 ++-- .../types/api/utils/ExecutorServiceUtil.java | 33 +++++++++++++++++++ 9 files changed, 59 insertions(+), 26 deletions(-) create mode 100644 datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java diff --git a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java index d63101032..e385b0c71 100644 --- a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java +++ b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java @@ -19,6 +19,7 @@ import de.adorsys.datasafe.storage.api.RegexDelegatingStorage; import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.api.UriBasedAuthStorageService; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3ClientFactory; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.types.api.actions.ListRequest; @@ -26,11 +27,7 @@ import de.adorsys.datasafe.types.api.actions.WriteRequest; import de.adorsys.datasafe.types.api.context.BaseOverridesRegistry; import de.adorsys.datasafe.types.api.context.overrides.OverridesRegistry; -import de.adorsys.datasafe.types.api.resource.AbsoluteLocation; -import de.adorsys.datasafe.types.api.resource.BasePrivateResource; -import de.adorsys.datasafe.types.api.resource.BasePublicResource; -import de.adorsys.datasafe.types.api.resource.ResolvedResource; -import de.adorsys.datasafe.types.api.resource.StorageIdentifier; +import de.adorsys.datasafe.types.api.resource.*; import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; import lombok.SneakyThrows; import lombok.experimental.Delegate; @@ -52,7 +49,6 @@ import java.util.List; import java.util.Map; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; import java.util.regex.Pattern; import java.util.stream.Collectors; import java.util.stream.Stream; @@ -76,7 +72,7 @@ class MultiDFSFunctionalityTest extends BaseMockitoTest { private static final String FILES_TWO = "filestwobucket"; private static final String INBOX = "inboxbucket"; - private static final ExecutorService EXECUTOR = Executors.newFixedThreadPool(5); + private static final ExecutorService EXECUTOR = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(5); private static Map minios = new HashMap<>(); private static Map endpointsByHost = new HashMap<>(); diff --git a/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java b/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java index 95e972f62..4cca9a078 100644 --- a/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java +++ b/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java @@ -15,6 +15,7 @@ import de.adorsys.datasafe.storage.api.RegexDelegatingStorage; import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.api.UriBasedAuthStorageService; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3ClientFactory; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.types.api.actions.ReadRequest; @@ -43,12 +44,9 @@ import java.util.HashMap; import java.util.Map; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; import java.util.regex.Pattern; -import static de.adorsys.datasafe.examples.business.s3.MinioContainerId.DIRECTORY_BUCKET; -import static de.adorsys.datasafe.examples.business.s3.MinioContainerId.FILES_BUCKET_ONE; -import static de.adorsys.datasafe.examples.business.s3.MinioContainerId.FILES_BUCKET_TWO; +import static de.adorsys.datasafe.examples.business.s3.MinioContainerId.*; import static org.assertj.core.api.Assertions.assertThat; /** @@ -60,7 +58,7 @@ @Slf4j class MultiDfsWithCredentialsExampleTest { - private static final ExecutorService EXECUTOR = Executors.newFixedThreadPool(4); + private static final ExecutorService EXECUTOR = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4); private static Map minios = new EnumMap<>(MinioContainerId.class); private static AmazonS3 directoryClient = null; diff --git a/datasafe-examples/datasafe-examples-versioned-s3/src/test/java/de/adorsys/datasafe/examples/business/s3/BaseUserOperationsWithDefaultDatasafeOnVersionedStorageTest.java b/datasafe-examples/datasafe-examples-versioned-s3/src/test/java/de/adorsys/datasafe/examples/business/s3/BaseUserOperationsWithDefaultDatasafeOnVersionedStorageTest.java index f5a32e630..1da625a16 100644 --- a/datasafe-examples/datasafe-examples-versioned-s3/src/test/java/de/adorsys/datasafe/examples/business/s3/BaseUserOperationsWithDefaultDatasafeOnVersionedStorageTest.java +++ b/datasafe-examples/datasafe-examples-versioned-s3/src/test/java/de/adorsys/datasafe/examples/business/s3/BaseUserOperationsWithDefaultDatasafeOnVersionedStorageTest.java @@ -12,6 +12,7 @@ import de.adorsys.datasafe.business.impl.service.DefaultDatasafeServices; import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig; import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.types.api.actions.ListRequest; import de.adorsys.datasafe.types.api.actions.ReadRequest; @@ -33,7 +34,6 @@ import java.io.OutputStream; import java.nio.charset.StandardCharsets; import java.nio.file.Path; -import java.util.concurrent.Executors; import java.util.concurrent.atomic.AtomicReference; import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat; @@ -123,7 +123,7 @@ void init() { .storage(new S3StorageService( cephS3, VERSIONED_BUCKET_NAME, - Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()))) + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService())) .build(); } diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index c7b1634c3..0bc9e6bd6 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -14,6 +14,7 @@ import de.adorsys.datasafe.directory.api.profile.operations.ProfileRegistrationService; import de.adorsys.datasafe.inbox.api.InboxService; import de.adorsys.datasafe.privatestore.api.PrivateSpaceService; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.teststorage.WithStorageProvider; import lombok.SneakyThrows; import org.junit.jupiter.api.BeforeEach; @@ -147,7 +148,7 @@ private boolean runFixtureInMultipleExecutions( OperationQueue queue, OperationExecutor executor, List exceptions) { - ExecutorService executorService = Executors.newFixedThreadPool(threadCount); + ExecutorService executorService = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(threadCount); List executionIds = IntStream.range(0, threadCount).boxed() .map(it -> UUID.randomUUID().toString()) .collect(Collectors.toList()); diff --git a/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java b/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java index 859af88d1..dc596e49e 100644 --- a/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java +++ b/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java @@ -29,6 +29,7 @@ import de.adorsys.datasafe.storage.impl.db.DatabaseStorageService; import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService; import de.adorsys.datasafe.storage.impl.s3.BucketNameRemovingRouter; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3ClientFactory; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.types.api.context.BaseOverridesRegistry; @@ -47,7 +48,6 @@ import java.util.Optional; import java.util.Set; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; import java.util.regex.Pattern; /** @@ -134,7 +134,7 @@ StorageService fsStorageService(DatasafeProperties properties) { @Bean @ConditionalOnProperty(value = CLIENT_CREDENTIALS, havingValue = "true") StorageService clientCredentials(AmazonS3 s3, DatasafeProperties properties) { - ExecutorService executorService = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()); + ExecutorService executorService = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(); S3StorageService basicStorage = new S3StorageService( s3, properties.getBucketName(), @@ -172,7 +172,7 @@ StorageService singleStorageService(AmazonS3 s3, DatasafeProperties properties) return new S3StorageService( s3, properties.getBucketName(), - Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()) + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService() ); } @@ -190,7 +190,7 @@ StorageService multiStorageService(DatasafeProperties properties) { ); S3StorageService s3StorageService = new S3StorageService(s3(properties), properties.getBucketName(), - Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()) + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService() ); StorageService multiDfs = new SchemeDelegatingStorage( diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java index 1c420b619..4c85a0922 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java @@ -22,6 +22,7 @@ import de.adorsys.datasafe.simple.adapter.api.types.*; import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.types.api.actions.ListRequest; import de.adorsys.datasafe.types.api.actions.ReadRequest; @@ -41,7 +42,6 @@ import java.net.URI; import java.nio.file.FileSystems; import java.util.List; -import java.util.concurrent.Executors; import java.util.stream.Collectors; @Slf4j @@ -128,7 +128,8 @@ public SimpleDatasafeServiceImpl(DFSCredentials dfsCredentials) { storageService = new S3StorageService( amazons3, amazonS3DFSCredentials.getContainer(), - Executors.newFixedThreadPool(amazonS3DFSCredentials.getThreadPoolSize()) + ExecutorServiceUtil + .submitterExecutesOnStarvationExecutingService(amazonS3DFSCredentials.getThreadPoolSize()) ); this.systemRoot = URI.create(S3_PREFIX + amazonS3DFSCredentials.getRootBucket()); customlyBuiltDatasafeServices = DaggerDefaultDatasafeServices.builder() diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/S3SystemStorageServiceTest.java b/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/S3SystemStorageServiceTest.java index 5bec58eac..bb0e06fa7 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/S3SystemStorageServiceTest.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/S3SystemStorageServiceTest.java @@ -6,6 +6,7 @@ import com.amazonaws.services.s3.AmazonS3; import com.amazonaws.services.s3.AmazonS3ClientBuilder; import com.amazonaws.services.s3.model.AmazonS3Exception; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.types.api.resource.*; import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; import lombok.SneakyThrows; @@ -16,7 +17,6 @@ import java.io.OutputStream; import java.util.List; -import java.util.concurrent.Executors; import java.util.stream.Collectors; import static org.assertj.core.api.Assertions.assertThat; @@ -70,8 +70,10 @@ static void beforeAll() { @BeforeEach void init() { - this.storageService = new S3StorageService(s3, bucketName, Executors.newFixedThreadPool( - Runtime.getRuntime().availableProcessors()) + this.storageService = new S3StorageService( + s3, + bucketName, + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService() ); } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index 6c8f31088..c350322d8 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -12,6 +12,7 @@ import com.google.common.base.Suppliers; import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; import de.adorsys.datasafe.teststorage.monitoring.ThreadPoolStatus; import de.adorsys.datasafe.types.api.resource.Uri; @@ -38,7 +39,6 @@ import java.util.Objects; import java.util.UUID; import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; import java.util.concurrent.ThreadPoolExecutor; import java.util.function.Function; import java.util.function.Supplier; @@ -55,7 +55,9 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String bucketPath = UUID.randomUUID().toString(); - private static final ExecutorService EXECUTOR_SERVICE = Executors.newCachedThreadPool(); + private static final ExecutorService EXECUTOR_SERVICE = + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(1); + private static String minioAccessKeyID = "admin"; private static String minioSecretAccessKey = "password"; private static String minioRegion = "eu-central-1"; diff --git a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java new file mode 100644 index 000000000..854cfb714 --- /dev/null +++ b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java @@ -0,0 +1,33 @@ +package de.adorsys.datasafe.types.api.utils; + +import lombok.experimental.UtilityClass; + +import java.util.concurrent.ExecutorService; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; + +@UtilityClass +public class ExecutorServiceUtil { + + /** + * Submitter will execute task if it can't be submitted, effectively blocking submitting threads. + * @param poolSize executor and queue size + * @return ExecutorService with limited queue size that executes task using submitter thread on starvation + */ + public ExecutorService submitterExecutesOnStarvationExecutingService(int poolSize) { + return new ThreadPoolExecutor(poolSize, poolSize, + 0L, TimeUnit.MILLISECONDS, + new LinkedBlockingQueue<>(poolSize), + new ThreadPoolExecutor.CallerRunsPolicy()); + } + + /** + * Submitter will execute task if it can't be submitted, effectively blocking submitting threads. + * @return ExecutorService with limited queue size that executes task using submitter thread on starvation that has + * thread pool with size equal to processor count + */ + public ExecutorService submitterExecutesOnStarvationExecutingService() { + return submitterExecutesOnStarvationExecutingService(Runtime.getRuntime().availableProcessors()); + } +} From a985ea84a094780240c357bce6006539382d7977 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Mon, 19 Aug 2019 16:08:43 +0200 Subject: [PATCH 12/42] return http for ceph --- .../de/adorsys/datasafe/teststorage/WithStorageProvider.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index c350322d8..eb9dd9a22 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -1,5 +1,7 @@ package de.adorsys.datasafe.teststorage; +import com.amazonaws.ClientConfiguration; +import com.amazonaws.Protocol; import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.client.builder.AwsClientBuilder; @@ -305,6 +307,7 @@ private static void initS3() { amazonMappedUrl = "s3://" + buckets[0] + "/" + bucketPath + "/"; } else { amazonS3ClientBuilder = amazonS3ClientBuilder + .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP)) .withEndpointConfiguration( new AwsClientBuilder.EndpointConfiguration(amazonUrl, "US") ) From d7e45f0c587a411586441196a55aae5194549990 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Mon, 19 Aug 2019 18:36:37 +0300 Subject: [PATCH 13/42] DOC-236. Fixed executor type --- .../e2e/randomactions/framework/BaseRandomActions.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index 0bc9e6bd6..f5ee3fd63 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -14,7 +14,6 @@ import de.adorsys.datasafe.directory.api.profile.operations.ProfileRegistrationService; import de.adorsys.datasafe.inbox.api.InboxService; import de.adorsys.datasafe.privatestore.api.PrivateSpaceService; -import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.teststorage.WithStorageProvider; import lombok.SneakyThrows; import org.junit.jupiter.api.BeforeEach; @@ -53,11 +52,13 @@ public abstract class BaseRandomActions extends WithStorageProvider { private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100, 1024, 10240"); // in KB private static final Set THREAD_COUNT = ImmutableSet.copyOf( - Stream.of(THREADS.split(",")).mapToInt(Integer::parseInt).boxed().collect(Collectors.toSet()) + Stream.of(THREADS.split(",")).map(String::trim) + .mapToInt(Integer::parseInt).boxed().collect(Collectors.toList()) ); private static final Set FILE_SIZE_K_BYTES = ImmutableSet.copyOf( - Stream.of(FILE_SIZES.split(",")).mapToInt(Integer::parseInt).boxed().collect(Collectors.toSet()) + Stream.of(FILE_SIZES.split(",")).map(String::trim) + .mapToInt(Integer::parseInt).boxed().collect(Collectors.toList()) ); @BeforeEach @@ -148,7 +149,7 @@ private boolean runFixtureInMultipleExecutions( OperationQueue queue, OperationExecutor executor, List exceptions) { - ExecutorService executorService = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(threadCount); + ExecutorService executorService = Executors.newFixedThreadPool(threadCount); List executionIds = IntStream.range(0, threadCount).boxed() .map(it -> UUID.randomUUID().toString()) .collect(Collectors.toList()); From 62ff639daad5106d1397c62135a5dda66b7b2b8a Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 11:47:03 +0300 Subject: [PATCH 14/42] DOC-236. More memory optimization --- .../MultipartUploadS3StorageOutputStream.java | 26 ++++++++++++------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index efa2fbee9..94574411f 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -65,7 +65,7 @@ public class MultipartUploadS3StorageOutputStream extends OutputStream { private final CompletionService completionService; - private ByteArrayOutputStream currentOutputStream = new ByteArrayOutputStream(); + private ByteArrayOutputStream currentOutputStream = newOutputStream(); private InitiateMultipartUploadResult multiPartUploadResult; @@ -87,14 +87,14 @@ public class MultipartUploadS3StorageOutputStream extends OutputStream { @Override @Synchronized - public void write(byte[] b, int off, int len) { + public void write(byte[] bytes, int off, int len) { int remainingSizeToWrite = len; int inputPosition = off; do { int availableCapacity = BUFFER_SIZE - currentOutputStream.size(); int bytesToWrite = Math.min(availableCapacity, remainingSizeToWrite); - currentOutputStream.write(b, inputPosition, bytesToWrite); + currentOutputStream.write(bytes, inputPosition, bytesToWrite); inputPosition += bytesToWrite; remainingSizeToWrite -= bytesToWrite; @@ -129,12 +129,18 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() { } initiateMultiPartIfNeeded(); + + byte[] content = currentOutputStream.toByteArray(); + int size = currentOutputStream.size(); + // Release the memory + currentOutputStream = newOutputStream(); + completionService.submit(new UploadChunkResultCallable( ChunkUploadRequest .builder() .amazonS3(amazonS3) - .content(currentOutputStream.toByteArray()) - .contentSize(currentOutputStream.size()) + .content(content) + .contentSize(size) .bucketName(bucketName) .objectName(objectName) .uploadId(multiPartUploadResult.getUploadId()) @@ -142,8 +148,8 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() { .lastChunk(false) .build() )); + ++partCounter; - currentOutputStream.reset(); } private boolean isMultiPartUpload() { @@ -156,6 +162,8 @@ private void finishSimpleUpload() { objectMetadata.setContentLength(currentOutputStream.size()); byte[] content = currentOutputStream.toByteArray(); + // Release the memory + currentOutputStream = null; MessageDigest messageDigest = MessageDigest.getInstance("MD5"); String md5Digest = BinaryUtils.toBase64(messageDigest.digest(content)); @@ -169,9 +177,6 @@ private void finishSimpleUpload() { notifyCommittedVersionIfPresent(upload.getVersionId()); - // Release the memory - currentOutputStream = null; - log.debug("Finished simple upload"); } @@ -271,5 +276,8 @@ private List getMultiPartsUploadResults() throws ExecutionException, I return result; } + private ByteArrayOutputStream newOutputStream() { + return new ByteArrayOutputStream(); + } } From bbd92321cbf07ef1da8acacb5f0f68fe1cfac50a Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 13:54:43 +0300 Subject: [PATCH 15/42] DOC-236. Aggressive memory usage optimization --- .../impl/e2e/MultiDFSFunctionalityTest.java | 3 +- .../api/types/AmazonS3DFSCredentials.java | 3 + .../impl/SimpleDatasafeServiceImpl.java | 5 +- .../MultipartUploadS3StorageOutputStream.java | 100 ++++++++++++++++-- .../teststorage/WithStorageProvider.java | 2 +- .../types/api/utils/ExecutorServiceUtil.java | 9 +- 6 files changed, 105 insertions(+), 17 deletions(-) diff --git a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java index e385b0c71..1e4e70efb 100644 --- a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java +++ b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/MultiDFSFunctionalityTest.java @@ -72,7 +72,8 @@ class MultiDFSFunctionalityTest extends BaseMockitoTest { private static final String FILES_TWO = "filestwobucket"; private static final String INBOX = "inboxbucket"; - private static final ExecutorService EXECUTOR = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(5); + private static final ExecutorService EXECUTOR = ExecutorServiceUtil + .submitterExecutesOnStarvationExecutingService(5, 5); private static Map minios = new HashMap<>(); private static Map endpointsByHost = new HashMap<>(); diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-api/src/main/java/de/adorsys/datasafe/simple/adapter/api/types/AmazonS3DFSCredentials.java b/datasafe-simple-adapter/datasafe-simple-adapter-api/src/main/java/de/adorsys/datasafe/simple/adapter/api/types/AmazonS3DFSCredentials.java index 3a04ecd38..9b3d7e607 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-api/src/main/java/de/adorsys/datasafe/simple/adapter/api/types/AmazonS3DFSCredentials.java +++ b/datasafe-simple-adapter/datasafe-simple-adapter-api/src/main/java/de/adorsys/datasafe/simple/adapter/api/types/AmazonS3DFSCredentials.java @@ -19,6 +19,9 @@ public class AmazonS3DFSCredentials extends DFSCredentials { @Builder.Default private final int threadPoolSize = 5; + @Builder.Default + private final int queueSize = 5; + public String getContainer() { return rootBucket.split("/")[0]; } diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java index 4c85a0922..8b3da1605 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SimpleDatasafeServiceImpl.java @@ -129,7 +129,10 @@ public SimpleDatasafeServiceImpl(DFSCredentials dfsCredentials) { amazons3, amazonS3DFSCredentials.getContainer(), ExecutorServiceUtil - .submitterExecutesOnStarvationExecutingService(amazonS3DFSCredentials.getThreadPoolSize()) + .submitterExecutesOnStarvationExecutingService( + amazonS3DFSCredentials.getThreadPoolSize(), + amazonS3DFSCredentials.getQueueSize() + ) ); this.systemRoot = URI.create(S3_PREFIX + amazonS3DFSCredentials.getRootBucket()); customlyBuiltDatasafeServices = DaggerDefaultDatasafeServices.builder() diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index 94574411f..a5421ceca 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -39,12 +39,10 @@ import lombok.Synchronized; import lombok.extern.slf4j.Slf4j; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.OutputStream; +import java.io.*; import java.security.MessageDigest; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import java.util.concurrent.CompletionService; import java.util.concurrent.ExecutionException; @@ -65,7 +63,7 @@ public class MultipartUploadS3StorageOutputStream extends OutputStream { private final CompletionService completionService; - private ByteArrayOutputStream currentOutputStream = newOutputStream(); + private CustomizableByteArrayOutputStream currentOutputStream = newOutputStream(); private InitiateMultipartUploadResult multiPartUploadResult; @@ -130,7 +128,7 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() { initiateMultiPartIfNeeded(); - byte[] content = currentOutputStream.toByteArray(); + byte[] content = currentOutputStream.getBuffer(); int size = currentOutputStream.size(); // Release the memory currentOutputStream = newOutputStream(); @@ -161,7 +159,7 @@ private void finishSimpleUpload() { ObjectMetadata objectMetadata = new ObjectMetadata(); objectMetadata.setContentLength(currentOutputStream.size()); - byte[] content = currentOutputStream.toByteArray(); + byte[] content = currentOutputStream.getBuffer(); // Release the memory currentOutputStream = null; @@ -220,11 +218,16 @@ private void sendLastChunkOfMultipartIfNeeded() { return; } + byte[] content = currentOutputStream.getBuffer(); + int size = currentOutputStream.size(); + // Release the memory + currentOutputStream = null; + completionService.submit( new UploadChunkResultCallable(ChunkUploadRequest.builder() .amazonS3(amazonS3) - .content(currentOutputStream.toByteArray()) - .contentSize(currentOutputStream.size()) + .content(content) + .contentSize(size) .bucketName(bucketName) .objectName(objectName) .uploadId(multiPartUploadResult.getUploadId()) @@ -276,8 +279,83 @@ private List getMultiPartsUploadResults() throws ExecutionException, I return result; } - private ByteArrayOutputStream newOutputStream() { - return new ByteArrayOutputStream(); + private CustomizableByteArrayOutputStream newOutputStream() { + return new CustomizableByteArrayOutputStream(32, BUFFER_SIZE); + } + + /** + * {@link ByteArrayOutputStream}-alike stream that has customized maximum capacity and growing strategy in + * order to minimize memory usage. + */ + private class CustomizableByteArrayOutputStream extends OutputStream { + + private final int maxArraySize; + private byte[] buffer; + private int count; + + CustomizableByteArrayOutputStream(int initialCapacity, int maxArraySize) { + this.buffer = new byte[initialCapacity]; + this.maxArraySize = maxArraySize; + } + + @Override + @Synchronized + public void write(int b) { + ensureCapacity(count + 1); + buffer[count] = (byte) b; + count += 1; + } + + @Override + @Synchronized + public void write(byte[] buffer, int off, int len) { + if ((off < 0) || (off > buffer.length) || (len < 0) || + ((off + len) - buffer.length > 0)) { + throw new IndexOutOfBoundsException(); + } + + ensureCapacity(count + len); + System.arraycopy(buffer, off, this.buffer, count, len); + count += len; + } + + @Synchronized + public byte[] getBuffer() { + return buffer; + } + + @Synchronized + public int size() { + return count; + } + + @Override + public void close() { + } + + private void ensureCapacity(int minCapacity) { + if (minCapacity <= buffer.length) { + return; + } + + grow(minCapacity); + } + + private void grow(int minCapacity) { + int oldCapacity = buffer.length; + + int newCapacity = Math.min(oldCapacity << 1, maxArraySize); + + if (newCapacity < minCapacity) { + newCapacity = minCapacity; + } + + if (newCapacity > maxArraySize) { + throw new OutOfMemoryError(); + } + + buffer = Arrays.copyOf(buffer, newCapacity); + } } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index eb9dd9a22..74320346b 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -58,7 +58,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String bucketPath = UUID.randomUUID().toString(); private static final ExecutorService EXECUTOR_SERVICE = - ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(1); + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 8); private static String minioAccessKeyID = "admin"; private static String minioSecretAccessKey = "password"; diff --git a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java index 854cfb714..ec1f92134 100644 --- a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java +++ b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java @@ -15,10 +15,10 @@ public class ExecutorServiceUtil { * @param poolSize executor and queue size * @return ExecutorService with limited queue size that executes task using submitter thread on starvation */ - public ExecutorService submitterExecutesOnStarvationExecutingService(int poolSize) { + public ExecutorService submitterExecutesOnStarvationExecutingService(int poolSize, int queueSize) { return new ThreadPoolExecutor(poolSize, poolSize, 0L, TimeUnit.MILLISECONDS, - new LinkedBlockingQueue<>(poolSize), + new LinkedBlockingQueue<>(queueSize), new ThreadPoolExecutor.CallerRunsPolicy()); } @@ -28,6 +28,9 @@ public ExecutorService submitterExecutesOnStarvationExecutingService(int poolSiz * thread pool with size equal to processor count */ public ExecutorService submitterExecutesOnStarvationExecutingService() { - return submitterExecutesOnStarvationExecutingService(Runtime.getRuntime().availableProcessors()); + return submitterExecutesOnStarvationExecutingService( + Runtime.getRuntime().availableProcessors(), + Runtime.getRuntime().availableProcessors() + ); } } From b0e2411259ad6d8f19d54057c4fd7b945392601f Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 13:55:12 +0300 Subject: [PATCH 16/42] DOC-236. Aggressive memory usage optimization --- .../storage/impl/s3/MultipartUploadS3StorageOutputStream.java | 1 + 1 file changed, 1 insertion(+) diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index a5421ceca..3dea2800b 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -331,6 +331,7 @@ public int size() { @Override public void close() { + // NOP } private void ensureCapacity(int minCapacity) { From 05475b243aaeb7c303005680d9c2fded0194a251 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 14:07:42 +0300 Subject: [PATCH 17/42] DOC-236. Less queue size asymmetricity --- .../de/adorsys/datasafe/teststorage/WithStorageProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index 74320346b..fb838a320 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -58,7 +58,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String bucketPath = UUID.randomUUID().toString(); private static final ExecutorService EXECUTOR_SERVICE = - ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 8); + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 4); private static String minioAccessKeyID = "admin"; private static String minioSecretAccessKey = "password"; From 798ccfa7c9011fea4fc4151f3c63069644c7cf46 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 14:29:20 +0300 Subject: [PATCH 18/42] DOC-236. Fixed MD5 for simple upload - it is calculated by s3 client too --- .../MultipartUploadS3StorageOutputStream.java | 28 ++++++------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index 3dea2800b..d99515ac2 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -22,16 +22,7 @@ package de.adorsys.datasafe.storage.impl.s3; import com.amazonaws.services.s3.AmazonS3; -import com.amazonaws.services.s3.model.AbortMultipartUploadRequest; -import com.amazonaws.services.s3.model.CompleteMultipartUploadRequest; -import com.amazonaws.services.s3.model.CompleteMultipartUploadResult; -import com.amazonaws.services.s3.model.InitiateMultipartUploadRequest; -import com.amazonaws.services.s3.model.InitiateMultipartUploadResult; -import com.amazonaws.services.s3.model.ObjectMetadata; -import com.amazonaws.services.s3.model.PartETag; -import com.amazonaws.services.s3.model.PutObjectResult; -import com.amazonaws.services.s3.model.UploadPartResult; -import com.amazonaws.util.BinaryUtils; +import com.amazonaws.services.s3.model.*; import de.adorsys.datasafe.types.api.callback.PhysicalVersionCallback; import de.adorsys.datasafe.types.api.callback.ResourceWriteCallback; import de.adorsys.datasafe.types.api.utils.Obfuscate; @@ -39,8 +30,10 @@ import lombok.Synchronized; import lombok.extern.slf4j.Slf4j; -import java.io.*; -import java.security.MessageDigest; +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.OutputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -157,20 +150,17 @@ private boolean isMultiPartUpload() { @SneakyThrows private void finishSimpleUpload() { ObjectMetadata objectMetadata = new ObjectMetadata(); - objectMetadata.setContentLength(currentOutputStream.size()); - + int size = currentOutputStream.size(); + objectMetadata.setContentLength(size); byte[] content = currentOutputStream.getBuffer(); + // Release the memory currentOutputStream = null; - MessageDigest messageDigest = MessageDigest.getInstance("MD5"); - String md5Digest = BinaryUtils.toBase64(messageDigest.digest(content)); - objectMetadata.setContentMD5(md5Digest); - PutObjectResult upload = amazonS3.putObject( bucketName, objectName, - new ByteArrayInputStream(content), + new ByteArrayInputStream(content, 0, size), objectMetadata); notifyCommittedVersionIfPresent(upload.getVersionId()); From 78c3e7fed1b1089ff143a01cce31b90c5f8030f5 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 20 Aug 2019 13:50:39 +0200 Subject: [PATCH 19/42] exec thread pool size parameter, removed monitoring --- .../teststorage/WithStorageProvider.java | 47 ++++++++--------- .../monitoring/ThreadPoolStatus.java | 51 ------------------- .../monitoring/ThreadPoolStatusMBean.java | 19 ------- 3 files changed, 20 insertions(+), 97 deletions(-) delete mode 100644 datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java delete mode 100644 datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index fb838a320..fc5400978 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -14,11 +14,10 @@ import com.google.common.base.Suppliers; import de.adorsys.datasafe.storage.api.StorageService; import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService; -import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import de.adorsys.datasafe.storage.impl.s3.S3StorageService; -import de.adorsys.datasafe.teststorage.monitoring.ThreadPoolStatus; import de.adorsys.datasafe.types.api.resource.Uri; import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; +import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.SneakyThrows; @@ -33,15 +32,11 @@ import org.testcontainers.containers.wait.strategy.Wait; import org.testcontainers.shaded.org.apache.commons.io.FileUtils; -import javax.management.MBeanServer; -import javax.management.ObjectName; -import java.lang.management.ManagementFactory; import java.nio.file.Path; import java.time.Duration; import java.util.Objects; import java.util.UUID; import java.util.concurrent.ExecutorService; -import java.util.concurrent.ThreadPoolExecutor; import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Stream; @@ -55,9 +50,10 @@ public abstract class WithStorageProvider extends BaseMockitoTest { public static final String SKIP_CEPH = "SKIP_CEPH"; - private static String bucketPath = UUID.randomUUID().toString(); + private static String bucketPath = UUID.randomUUID().toString(); - private static final ExecutorService EXECUTOR_SERVICE = + private static final ExecutorService EXECUTOR_SERVICE = "true".equals(readPropOrEnv("USE_EXECUTOR_POOL")) ? + ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService() : ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 4); private static String minioAccessKeyID = "admin"; @@ -115,8 +111,6 @@ static void init(@TempDir Path tempDir) { initS3(); return null; }); - - registerMBean(); } @AfterEach @@ -239,7 +233,7 @@ protected static StorageDescriptor cephVersioned() { cephAccessKeyID, cephSecretAccessKey, cephRegion, - cephBucketName + "/" + bucketPath + cephBucketName + "/" + bucketPath ); } @@ -255,7 +249,7 @@ private static boolean skipCeph() { } protected static Function storageServiceByBucket() { - return bucketName -> new S3StorageService(amazonS3, bucketName, EXECUTOR_SERVICE); + return bucketName -> new S3StorageService(amazonS3, bucketName, EXECUTOR_SERVICE); } protected static StorageDescriptor s3() { @@ -395,7 +389,8 @@ private static void startCeph() { /** * Reads property by {@code name} and if such property doesn't exist then it reads it from environment variables. - * @param name Property/environment variable name + * + * @param name Property/environment variable name * @param defaultValue Default value if none are present * @return Property value */ @@ -406,6 +401,7 @@ protected static String readPropOrEnv(String name, String defaultValue) { /** * Reads property by {@code name} and if such property doesn't exist then it reads it from environment variables. + * * @param name Property/environment variable name * @return Property value */ @@ -427,12 +423,17 @@ public static class StorageDescriptor { private final String rootBucket; public String getMappedUrl() { - switch(name) { - case MINIO: return minioMappedUrl; - case CEPH: return cephMappedUrl; - case AMAZON: return amazonMappedUrl; - case FILESYSTEM: return null; - default: throw new RuntimeException("missing switch for " + name); + switch (name) { + case MINIO: + return minioMappedUrl; + case CEPH: + return cephMappedUrl; + case AMAZON: + return amazonMappedUrl; + case FILESYSTEM: + return null; + default: + throw new RuntimeException("missing switch for " + name); } } } @@ -443,12 +444,4 @@ public enum StorageDescriptorName { CEPH, AMAZON } - - @SneakyThrows - private static void registerMBean() { - ObjectName objectName = new ObjectName("de.adorsys.datasafe:type=basic,name=threadPoolStatus"); - ThreadPoolStatus threadPoolStatus = new ThreadPoolStatus((ThreadPoolExecutor) EXECUTOR_SERVICE); - MBeanServer server = ManagementFactory.getPlatformMBeanServer(); - server.registerMBean(threadPoolStatus, objectName); - } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java deleted file mode 100644 index 0b4a63961..000000000 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatus.java +++ /dev/null @@ -1,51 +0,0 @@ -package de.adorsys.datasafe.teststorage.monitoring; - -import java.util.concurrent.ThreadPoolExecutor; - -public class ThreadPoolStatus implements ThreadPoolStatusMBean { - private ThreadPoolExecutor executor; - - public ThreadPoolStatus(ThreadPoolExecutor executor) { - this.executor = executor; - } - - @Override - public int getActiveCount() { - return executor.getActiveCount(); - } - - @Override - public long getCompletedTaskCount() { - return executor.getCompletedTaskCount(); - } - - @Override - public int getCorePoolSize() { - return executor.getCorePoolSize(); - } - - @Override - public int getLargestPoolSize() { - return executor.getLargestPoolSize(); - } - - @Override - public int getMaximumPoolSize() { - return executor.getMaximumPoolSize(); - } - - @Override - public int getPoolSize() { - return executor.getPoolSize(); - } - - @Override - public long getTaskCount() { - return executor.getTaskCount(); - } - - @Override - public long getQueuedTaskCount() { - return getTaskCount()-getCompletedTaskCount()-getActiveCount(); - } -} diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java deleted file mode 100644 index 512ac00af..000000000 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/monitoring/ThreadPoolStatusMBean.java +++ /dev/null @@ -1,19 +0,0 @@ -package de.adorsys.datasafe.teststorage.monitoring; - -public interface ThreadPoolStatusMBean { - int getActiveCount(); - - long getCompletedTaskCount(); - - int getCorePoolSize(); - - int getLargestPoolSize(); - - int getMaximumPoolSize(); - - int getPoolSize(); - - long getTaskCount(); - - long getQueuedTaskCount(); -} \ No newline at end of file From 39827b3471745ad719f57cf23051f3c0cabbb716 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 20 Aug 2019 15:50:30 +0200 Subject: [PATCH 20/42] test fix --- .../MultipartUploadS3StorageOutputStreamTest.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStreamTest.java b/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStreamTest.java index 2c3eb2bf6..bdbae0d63 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStreamTest.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/test/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStreamTest.java @@ -13,6 +13,7 @@ import org.mockito.ArgumentCaptor; import org.mockito.Captor; import org.mockito.Mock; +import org.testcontainers.shaded.com.google.common.io.ByteStreams; import java.io.InputStream; import java.util.Arrays; @@ -186,11 +187,16 @@ void writeByteByByteChunked() { assertThat(uploadChunk.getAllValues()).hasSize(2); assertThat(uploadChunk.getAllValues().get(0).getInputStream()) .hasContent(new String(Arrays.copyOfRange(multipartChunkWithTail, 0, BUFFER_SIZE))); - assertThat(uploadChunk.getAllValues().get(1).getInputStream()) - .hasContent(new String(Arrays.copyOfRange( + + // we are setting size parameter that limits number of bytes read by s3 client: + int partialPartSize = (int) uploadChunk.getAllValues().get(1).getPartSize(); + byte[] partialChunk = new byte[partialPartSize]; + ByteStreams.readFully(uploadChunk.getAllValues().get(1).getInputStream(), partialChunk, 0, partialPartSize); + assertThat(new String(partialChunk)) + .isEqualTo(new String(Arrays.copyOfRange( multipartChunkWithTail, BUFFER_SIZE, multipartChunkWithTail.length) - ) - ); + ) + ); } @Test From abb0055f51afe90856d748354f2749e5be2c58e9 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Tue, 20 Aug 2019 16:04:10 +0200 Subject: [PATCH 21/42] long run test fixes --- .../datasafe-business-tests-random-actions/pom.xml | 6 +++++- .../framework/fixture/generator/FixtureGenerator.java | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml index 5c132b036..09f854049 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml @@ -11,6 +11,10 @@ datasafe-business-tests-random-actions + + 2.22.2 + + de.adorsys @@ -180,7 +184,7 @@ org.apache.maven.plugins maven-surefire-plugin - 2.22.2 + ${maven.surefire.plugin.version} once ${testArgs} diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java index 411913558..62a5dcae7 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/generator/FixtureGenerator.java @@ -90,9 +90,9 @@ private void printResult() { String path = "./src/test/resources/fixture/result.json"; System.out.println("Fixture has been written to: " + path); - FileOutputStream os = new FileOutputStream(path); - os.write(new GsonBuilder().setPrettyPrinting().create().toJson(fixture).getBytes()); - os.close(); + try (FileOutputStream os = new FileOutputStream(path)) { + os.write(new GsonBuilder().setPrettyPrinting().create().toJson(fixture).getBytes()); + } } /** From 11d66bfeed8b749f4d5a93cd562f226cc5a1ab74 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 17:20:13 +0300 Subject: [PATCH 22/42] DOC-236. Fixed MD5 for simple upload - it is calculated by s3 client too --- .../MultipartUploadS3StorageOutputStream.java | 71 ++++++++++++++----- 1 file changed, 52 insertions(+), 19 deletions(-) diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index d99515ac2..70d5aca09 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -121,7 +121,7 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() { initiateMultiPartIfNeeded(); - byte[] content = currentOutputStream.getBuffer(); + byte[] content = currentOutputStream.getBufferOrCopy(); int size = currentOutputStream.size(); // Release the memory currentOutputStream = newOutputStream(); @@ -152,7 +152,7 @@ private void finishSimpleUpload() { ObjectMetadata objectMetadata = new ObjectMetadata(); int size = currentOutputStream.size(); objectMetadata.setContentLength(size); - byte[] content = currentOutputStream.getBuffer(); + byte[] content = currentOutputStream.getBufferOrCopy(); // Release the memory currentOutputStream = null; @@ -208,7 +208,7 @@ private void sendLastChunkOfMultipartIfNeeded() { return; } - byte[] content = currentOutputStream.getBuffer(); + byte[] content = currentOutputStream.getBufferOrCopy(); int size = currentOutputStream.size(); // Release the memory currentOutputStream = null; @@ -270,7 +270,7 @@ private List getMultiPartsUploadResults() throws ExecutionException, I } private CustomizableByteArrayOutputStream newOutputStream() { - return new CustomizableByteArrayOutputStream(32, BUFFER_SIZE); + return new CustomizableByteArrayOutputStream(32, BUFFER_SIZE, 0.5); } /** @@ -279,21 +279,42 @@ private CustomizableByteArrayOutputStream newOutputStream() { */ private class CustomizableByteArrayOutputStream extends OutputStream { + private final double fillFactorToCopy; private final int maxArraySize; private byte[] buffer; private int count; - CustomizableByteArrayOutputStream(int initialCapacity, int maxArraySize) { + /** + * @param initialCapacity Initial buffer capacity + * @param maxArraySize Maximum array(buffer) size + * @param fillFactorToCopy If buffer fill factor is less than this value + * {@link CustomizableByteArrayOutputStream#getBufferOrCopy()} will return buffer copy, + * that contains all data but has smaller size than holding entire buffer. + */ + CustomizableByteArrayOutputStream(int initialCapacity, int maxArraySize, double fillFactorToCopy) { + if (initialCapacity <= 0) { + throw new IllegalArgumentException("Initial capacity must be > 0: " + initialCapacity); + } + + if (maxArraySize <= 0) { + throw new IllegalArgumentException("Max array size must be > 0: " + maxArraySize); + } + + if (fillFactorToCopy < 0 || fillFactorToCopy > 1.0) { + throw new IllegalArgumentException("Fill factor for Array.copy must be in [0, 1]: " + fillFactorToCopy); + } + this.buffer = new byte[initialCapacity]; this.maxArraySize = maxArraySize; + this.fillFactorToCopy = fillFactorToCopy; } @Override @Synchronized - public void write(int b) { - ensureCapacity(count + 1); - buffer[count] = (byte) b; - count += 1; + public void write(int byteToWrite) { + ensureCapacity(this.count + 1); + this.buffer[count] = (byte) byteToWrite; + this.count += 1; } @Override @@ -304,19 +325,31 @@ public void write(byte[] buffer, int off, int len) { throw new IndexOutOfBoundsException(); } - ensureCapacity(count + len); - System.arraycopy(buffer, off, this.buffer, count, len); - count += len; + ensureCapacity(this.count + len); + System.arraycopy(buffer, off, this.buffer, this.count, len); + this.count += len; } + /** + * Optimized resulting data array that has actual length equal to + * {@link CustomizableByteArrayOutputStream#size()}. + * Prevents keeping too large objects in memory while upload request finishes. + * Copies buffer to allow its cleanup if fill factor is too small. + */ @Synchronized - public byte[] getBuffer() { - return buffer; + public byte[] getBufferOrCopy() { + double fillFactor = (double) this.count / this.buffer.length; + + if (fillFactor >= this.fillFactorToCopy) { + return this.buffer; + } + + return Arrays.copyOf(this.buffer, count); } @Synchronized public int size() { - return count; + return this.count; } @Override @@ -333,19 +366,19 @@ private void ensureCapacity(int minCapacity) { } private void grow(int minCapacity) { - int oldCapacity = buffer.length; + int oldCapacity = this.buffer.length; - int newCapacity = Math.min(oldCapacity << 1, maxArraySize); + int newCapacity = Math.min(oldCapacity << 1, this.maxArraySize); if (newCapacity < minCapacity) { newCapacity = minCapacity; } - if (newCapacity > maxArraySize) { + if (newCapacity > this.maxArraySize) { throw new OutOfMemoryError(); } - buffer = Arrays.copyOf(buffer, newCapacity); + this.buffer = Arrays.copyOf(this.buffer, newCapacity); } } } From 05cfa1f916a1b555b1626104a884a74d3945d508 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 20 Aug 2019 17:38:44 +0300 Subject: [PATCH 23/42] DOC-236. Fixed test compilation error --- .../business/s3/MultiDfsWithCredentialsExampleTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java b/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java index 4cca9a078..fb443fdd5 100644 --- a/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java +++ b/datasafe-examples/datasafe-examples-multidfs/src/test/java/de/adorsys/datasafe/examples/business/s3/MultiDfsWithCredentialsExampleTest.java @@ -58,7 +58,8 @@ @Slf4j class MultiDfsWithCredentialsExampleTest { - private static final ExecutorService EXECUTOR = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4); + private static final ExecutorService EXECUTOR = ExecutorServiceUtil + .submitterExecutesOnStarvationExecutingService(4, 4); private static Map minios = new EnumMap<>(MinioContainerId.class); private static AmazonS3 directoryClient = null; From abfcdd2b80fdbc162a964db547a0bf035cc2c810 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Wed, 21 Aug 2019 13:10:30 +0300 Subject: [PATCH 24/42] DOC-236. Improved inbox sharing memory usage --- .../impl/e2e/BasicFunctionalityTest.java | 32 ++++++ .../document/CMSDocumentWriteService.java | 103 ++++++++++++++++-- .../api/actions/StorageWriteService.java | 11 ++ .../storage/impl/s3/S3StorageService.java | 5 + 4 files changed, 144 insertions(+), 7 deletions(-) diff --git a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/BasicFunctionalityTest.java b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/BasicFunctionalityTest.java index 4e62f01ee..61281bb27 100644 --- a/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/BasicFunctionalityTest.java +++ b/datasafe-business/src/test/java/de/adorsys/datasafe/business/impl/e2e/BasicFunctionalityTest.java @@ -17,8 +17,10 @@ import org.junit.jupiter.params.provider.MethodSource; import org.testcontainers.shaded.com.google.common.collect.ImmutableSet; +import java.io.ByteArrayInputStream; import java.io.OutputStream; import java.util.List; +import java.util.concurrent.ThreadLocalRandom; import java.util.function.Predicate; import java.util.stream.Collectors; @@ -31,6 +33,8 @@ @Slf4j class BasicFunctionalityTest extends BaseE2ETest { + private static final int LARGE_SIZE = 10 * 1024 * 1024 + 100; + private StorageService storage; private Uri location; @@ -87,6 +91,34 @@ void testMultipleRecipientsSharing(WithStorageProvider.StorageDescriptor descrip assertThat(readFromInbox.read(ReadRequest.forDefaultPrivate(jamie, multiShareFile))).hasContent(MESSAGE_ONE); } + @SneakyThrows + @ParameterizedTest + @MethodSource("allStorages") + void testMultipleRecipientsSharingLargeChunk(WithStorageProvider.StorageDescriptor descriptor) { + init(descriptor); + + UserIDAuth john = registerUser("john"); + UserIDAuth jane = registerUser("jane"); + UserIDAuth jamie = registerUser("jamie"); + + String multiShareFile = "multishare.txt"; + byte[] bytes = new byte[LARGE_SIZE]; + ThreadLocalRandom.current().nextBytes(bytes); + try (OutputStream os = writeToInbox.write(WriteRequest.forDefaultPublic( + ImmutableSet.of(john.getUserID(), jane.getUserID(), jamie.getUserID()), + multiShareFile)) + ) { + os.write(bytes); + } + + assertThat(readFromInbox.read(ReadRequest.forDefaultPrivate(john, multiShareFile))) + .hasSameContentAs(new ByteArrayInputStream(bytes)); + assertThat(readFromInbox.read(ReadRequest.forDefaultPrivate(jane, multiShareFile))) + .hasSameContentAs(new ByteArrayInputStream(bytes)); + assertThat(readFromInbox.read(ReadRequest.forDefaultPrivate(jamie, multiShareFile))) + .hasSameContentAs(new ByteArrayInputStream(bytes)); + } + @ParameterizedTest @MethodSource("allStorages") void testWriteToPrivateListPrivateReadPrivateAndSendToAndReadFromInbox( diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java index bc6c66952..b26443d7e 100644 --- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java +++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java @@ -15,10 +15,12 @@ import lombok.SneakyThrows; import javax.inject.Inject; +import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.List; import java.util.Map; +import java.util.Optional; import java.util.stream.Collectors; /** @@ -40,11 +42,19 @@ public CMSDocumentWriteService(StorageWriteService writeService, @Override public OutputStream write(Map recipientsWithInbox) { - FanOutStream dfsSink = new FanOutStream( - recipientsWithInbox.values().stream() - .map(it -> writeService.write(WithCallback.noCallback(it))) - .collect(Collectors.toList()) - ); + int maxChunkSize = recipientsWithInbox.values().stream() + .map(writeService::flushChunkSize) + .filter(Optional::isPresent) + .mapToInt(Optional::get) + .max() + .orElse(-1); + + List recipients = recipientsWithInbox.values().stream() + .map(it -> writeService.write(WithCallback.noCallback(it))) + .collect(Collectors.toList()); + + FanOutStream dfsSink = maxChunkSize > 0 ? + new ChunkableFanOutStream(recipients, maxChunkSize) : new FanOutStream(recipients); OutputStream encryptionSink = cms.buildEncryptionOutputStream( dfsSink, @@ -115,9 +125,9 @@ private static void doClose(OutputStream stream) { * byte to multiple recipients. */ @RequiredArgsConstructor - private static final class FanOutStream extends OutputStream { + private static class FanOutStream extends OutputStream { - private final List destinations; + protected final List destinations; @Override public void write(int b) throws IOException { @@ -142,4 +152,83 @@ public void close() { } } } + + /** + * Buffered fan-out stream, so that same data won't get replicated multiple times for chunked consumers. + * Such consumers retain buffer that is equal to chunk size, in order to eliminate this extra buffer + * this class can be used (assuming all-equal chunk size). + */ + private static class ChunkableFanOutStream extends FanOutStream { + + private final int chunkSize; + private final ByteArrayOutputStream os; + + private ChunkableFanOutStream(List destinations, int chunkSize) { + super(destinations); + + this.chunkSize = chunkSize; + this.os = new ByteArrayOutputStream(chunkSize); + } + + @Override + public void write(int b) throws IOException { + if (!needsFlush()) { + os.write(b); + return; + } + + doFlush(); + os.write(b); + } + + @Override + public void write(byte[] bytes, int off, int len) throws IOException { + if (!needsFlush()) { + os.write(bytes, off, len); + return; + } + + doFlush(); + os.write(bytes, off, len); + } + + @Override + @SneakyThrows + public void close() { + if (os.size() == 0) { + super.close(); + return; + } + + // when closing stream immediately it is ok not to write in chunks - memory will + // be retained only for 1 destination + byte[] tailChunk = os.toByteArray(); + for (OutputStream destination : destinations) { + destination.write(tailChunk, 0, tailChunk.length); + destination.close(); + } + } + + private void doFlush() throws IOException { + byte[] bytes = os.toByteArray(); + + // write only in chunks of declared size + int chunksToWrite = bytes.length / chunkSize; + int written = 0; + for (int chunkNum = 0; chunkNum < chunksToWrite; chunkNum++) { + super.write(bytes, written, chunkSize); + written += chunkSize; + } + + // retain tail bytes, non proportional to `chunkSize`: + os.reset(); + if (written < bytes.length) { + os.write(bytes, written, bytes.length - written); + } + } + + private boolean needsFlush() { + return os.size() > chunkSize; + } + } } diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/actions/StorageWriteService.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/actions/StorageWriteService.java index afc21b51f..38f438bfa 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/actions/StorageWriteService.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/actions/StorageWriteService.java @@ -5,6 +5,7 @@ import de.adorsys.datasafe.types.api.resource.WithCallback; import java.io.OutputStream; +import java.util.Optional; /** * Raw file write operation at a given location. Paths use URL-encoding. @@ -19,6 +20,16 @@ public interface StorageWriteService { * @apiNote Resulting stream should be closed properly */ OutputStream write(WithCallback locationWithCallback); + + /** + * For some storages that cache data before writing it (i.e. {@code S3StorageService}) this should indicate + * buffer size, so that callers can optimize some parts of their logic. + * @param location resource to check for buffer size + * @return Buffer size in bytes, or {@code -1} if undefined + */ + default Optional flushChunkSize(AbsoluteLocation location) { + return Optional.empty(); + } } diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/S3StorageService.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/S3StorageService.java index 3e13b602c..5d461e64d 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/S3StorageService.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/S3StorageService.java @@ -139,6 +139,11 @@ public boolean objectExists(AbsoluteLocation location) { return pathExists; } + @Override + public Optional flushChunkSize(AbsoluteLocation location) { + return Optional.of(MultipartUploadS3StorageOutputStream.BUFFER_SIZE); + } + private void doRemove(String bucket, String key) { if (key.endsWith("/")) { S3Objects.withPrefix(s3, bucket, key).forEach(it -> s3.deleteObject(bucket, it.getKey())); From 3467ba1df3d18d181d3d42c1777c021d0b9c57e6 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Wed, 21 Aug 2019 13:50:57 +0300 Subject: [PATCH 25/42] DOC-236. Removed never used field --- .../impl/cmsencryption/CMSEncryptionServiceImpl.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionServiceImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionServiceImpl.java index 72d6ca127..985524817 100644 --- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionServiceImpl.java +++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionServiceImpl.java @@ -23,7 +23,6 @@ import java.io.OutputStream; import java.security.Key; import java.util.Collections; -import java.util.HashMap; import java.util.Map; import java.util.Set; import java.util.function.Function; @@ -39,9 +38,6 @@ @RuntimeDelegate public class CMSEncryptionServiceImpl implements CMSEncryptionService { - private final Map decryptors = new HashMap<>(); - - private CMSEncryptionConfig encryptionConfig; @Inject From bf8d314bdf5d1f5672650c0f8ad833e55366c4bb Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Wed, 21 Aug 2019 15:47:56 +0300 Subject: [PATCH 26/42] DOC-236. Improved inbox sharing memory usage - more aggressive --- .../document/CMSDocumentWriteService.java | 32 ++--- .../MultipartUploadS3StorageOutputStream.java | 112 +--------------- .../CustomizableByteArrayOutputStream.java | 125 ++++++++++++++++++ 3 files changed, 143 insertions(+), 126 deletions(-) create mode 100644 datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java index b26443d7e..96e0ff29e 100644 --- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java +++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java @@ -11,11 +11,11 @@ import de.adorsys.datasafe.types.api.resource.AbsoluteLocation; import de.adorsys.datasafe.types.api.resource.PrivateResource; import de.adorsys.datasafe.types.api.resource.WithCallback; +import de.adorsys.datasafe.types.api.utils.CustomizableByteArrayOutputStream; import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; import javax.inject.Inject; -import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.List; @@ -161,35 +161,35 @@ public void close() { private static class ChunkableFanOutStream extends FanOutStream { private final int chunkSize; - private final ByteArrayOutputStream os; + private final CustomizableByteArrayOutputStream os; private ChunkableFanOutStream(List destinations, int chunkSize) { super(destinations); this.chunkSize = chunkSize; - this.os = new ByteArrayOutputStream(chunkSize); + this.os = new CustomizableByteArrayOutputStream(32, Integer.MAX_VALUE - 1, 0.5); } @Override public void write(int b) throws IOException { - if (!needsFlush()) { + if (!needsFlush(1)) { os.write(b); return; } - doFlush(); os.write(b); + doFlush(); } @Override public void write(byte[] bytes, int off, int len) throws IOException { - if (!needsFlush()) { + if (!needsFlush(len)) { os.write(bytes, off, len); return; } - doFlush(); os.write(bytes, off, len); + doFlush(); } @Override @@ -202,18 +202,20 @@ public void close() { // when closing stream immediately it is ok not to write in chunks - memory will // be retained only for 1 destination - byte[] tailChunk = os.toByteArray(); + byte[] tailChunk = os.getBufferOrCopy(); + int size = os.size(); for (OutputStream destination : destinations) { - destination.write(tailChunk, 0, tailChunk.length); + destination.write(tailChunk, 0, size); destination.close(); } } private void doFlush() throws IOException { - byte[] bytes = os.toByteArray(); + byte[] bytes = os.getBufferOrCopy(); + int size = os.size(); // write only in chunks of declared size - int chunksToWrite = bytes.length / chunkSize; + int chunksToWrite = size / chunkSize; int written = 0; for (int chunkNum = 0; chunkNum < chunksToWrite; chunkNum++) { super.write(bytes, written, chunkSize); @@ -222,13 +224,13 @@ private void doFlush() throws IOException { // retain tail bytes, non proportional to `chunkSize`: os.reset(); - if (written < bytes.length) { - os.write(bytes, written, bytes.length - written); + if (written < size) { + os.write(bytes, written, size - written); } } - private boolean needsFlush() { - return os.size() > chunkSize; + private boolean needsFlush(int addedBytes) { + return os.size() + addedBytes > chunkSize; } } } diff --git a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java index 70d5aca09..824f0882a 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java +++ b/datasafe-storage/datasafe-storage-impl-s3/src/main/java/de/adorsys/datasafe/storage/impl/s3/MultipartUploadS3StorageOutputStream.java @@ -25,17 +25,16 @@ import com.amazonaws.services.s3.model.*; import de.adorsys.datasafe.types.api.callback.PhysicalVersionCallback; import de.adorsys.datasafe.types.api.callback.ResourceWriteCallback; +import de.adorsys.datasafe.types.api.utils.CustomizableByteArrayOutputStream; import de.adorsys.datasafe.types.api.utils.Obfuscate; import lombok.SneakyThrows; import lombok.Synchronized; import lombok.extern.slf4j.Slf4j; import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.ArrayList; -import java.util.Arrays; import java.util.List; import java.util.concurrent.CompletionService; import java.util.concurrent.ExecutionException; @@ -272,114 +271,5 @@ private List getMultiPartsUploadResults() throws ExecutionException, I private CustomizableByteArrayOutputStream newOutputStream() { return new CustomizableByteArrayOutputStream(32, BUFFER_SIZE, 0.5); } - - /** - * {@link ByteArrayOutputStream}-alike stream that has customized maximum capacity and growing strategy in - * order to minimize memory usage. - */ - private class CustomizableByteArrayOutputStream extends OutputStream { - - private final double fillFactorToCopy; - private final int maxArraySize; - private byte[] buffer; - private int count; - - /** - * @param initialCapacity Initial buffer capacity - * @param maxArraySize Maximum array(buffer) size - * @param fillFactorToCopy If buffer fill factor is less than this value - * {@link CustomizableByteArrayOutputStream#getBufferOrCopy()} will return buffer copy, - * that contains all data but has smaller size than holding entire buffer. - */ - CustomizableByteArrayOutputStream(int initialCapacity, int maxArraySize, double fillFactorToCopy) { - if (initialCapacity <= 0) { - throw new IllegalArgumentException("Initial capacity must be > 0: " + initialCapacity); - } - - if (maxArraySize <= 0) { - throw new IllegalArgumentException("Max array size must be > 0: " + maxArraySize); - } - - if (fillFactorToCopy < 0 || fillFactorToCopy > 1.0) { - throw new IllegalArgumentException("Fill factor for Array.copy must be in [0, 1]: " + fillFactorToCopy); - } - - this.buffer = new byte[initialCapacity]; - this.maxArraySize = maxArraySize; - this.fillFactorToCopy = fillFactorToCopy; - } - - @Override - @Synchronized - public void write(int byteToWrite) { - ensureCapacity(this.count + 1); - this.buffer[count] = (byte) byteToWrite; - this.count += 1; - } - - @Override - @Synchronized - public void write(byte[] buffer, int off, int len) { - if ((off < 0) || (off > buffer.length) || (len < 0) || - ((off + len) - buffer.length > 0)) { - throw new IndexOutOfBoundsException(); - } - - ensureCapacity(this.count + len); - System.arraycopy(buffer, off, this.buffer, this.count, len); - this.count += len; - } - - /** - * Optimized resulting data array that has actual length equal to - * {@link CustomizableByteArrayOutputStream#size()}. - * Prevents keeping too large objects in memory while upload request finishes. - * Copies buffer to allow its cleanup if fill factor is too small. - */ - @Synchronized - public byte[] getBufferOrCopy() { - double fillFactor = (double) this.count / this.buffer.length; - - if (fillFactor >= this.fillFactorToCopy) { - return this.buffer; - } - - return Arrays.copyOf(this.buffer, count); - } - - @Synchronized - public int size() { - return this.count; - } - - @Override - public void close() { - // NOP - } - - private void ensureCapacity(int minCapacity) { - if (minCapacity <= buffer.length) { - return; - } - - grow(minCapacity); - } - - private void grow(int minCapacity) { - int oldCapacity = this.buffer.length; - - int newCapacity = Math.min(oldCapacity << 1, this.maxArraySize); - - if (newCapacity < minCapacity) { - newCapacity = minCapacity; - } - - if (newCapacity > this.maxArraySize) { - throw new OutOfMemoryError(); - } - - this.buffer = Arrays.copyOf(this.buffer, newCapacity); - } - } } diff --git a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java new file mode 100644 index 000000000..09b2adbbb --- /dev/null +++ b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java @@ -0,0 +1,125 @@ +package de.adorsys.datasafe.types.api.utils; + +import lombok.Synchronized; + +import java.io.ByteArrayOutputStream; +import java.io.OutputStream; +import java.util.Arrays; + +/** + * {@link ByteArrayOutputStream}-alike stream that has customized maximum capacity and growing strategy in + * order to minimize memory usage. + */ +public class CustomizableByteArrayOutputStream extends OutputStream { + + private final double fillFactorToCopy; + private final int maxArraySize; + private final int initialCapacity; + + private byte[] buffer; + private int count; + + /** + * @param initialCapacity Initial buffer capacity + * @param maxArraySize Maximum array(buffer) size + * @param fillFactorToCopy If buffer fill factor is less than this value + * {@link CustomizableByteArrayOutputStream#getBufferOrCopy()} will return buffer copy, + * that contains all data but has smaller size than holding entire buffer. + */ + public CustomizableByteArrayOutputStream(int initialCapacity, int maxArraySize, double fillFactorToCopy) { + if (initialCapacity <= 0) { + throw new IllegalArgumentException("Initial capacity must be > 0: " + initialCapacity); + } + + if (maxArraySize <= 0) { + throw new IllegalArgumentException("Max array size must be > 0: " + maxArraySize); + } + + if (fillFactorToCopy < 0 || fillFactorToCopy > 1.0) { + throw new IllegalArgumentException("Fill factor for Array.copy must be in [0, 1]: " + fillFactorToCopy); + } + + this.initialCapacity = initialCapacity; + this.buffer = new byte[this.initialCapacity]; + this.maxArraySize = maxArraySize; + this.fillFactorToCopy = fillFactorToCopy; + } + + @Override + @Synchronized + public void write(int byteToWrite) { + ensureCapacity(this.count + 1); + this.buffer[count] = (byte) byteToWrite; + this.count += 1; + } + + @Override + @Synchronized + public void write(byte[] buffer, int off, int len) { + if ((off < 0) || (off > buffer.length) || (len < 0) || + ((off + len) - buffer.length > 0)) { + throw new IndexOutOfBoundsException(); + } + + ensureCapacity(this.count + len); + System.arraycopy(buffer, off, this.buffer, this.count, len); + this.count += len; + } + + /** + * Optimized resulting data array that has actual length equal to + * {@link CustomizableByteArrayOutputStream#size()}. + * Prevents keeping too large objects in memory while upload request finishes. + * Copies buffer to allow its cleanup if fill factor is too small. + */ + @Synchronized + public byte[] getBufferOrCopy() { + double fillFactor = (double) this.count / this.buffer.length; + + if (fillFactor >= this.fillFactorToCopy) { + return this.buffer; + } + + return Arrays.copyOf(this.buffer, count); + } + + @Synchronized + public int size() { + return this.count; + } + + @Override + public void close() { + // NOP + } + + @Synchronized + public void reset() { + this.count = 0; + this.buffer = new byte[initialCapacity]; + } + + private void ensureCapacity(int minCapacity) { + if (minCapacity <= buffer.length) { + return; + } + + grow(minCapacity); + } + + private void grow(int minCapacity) { + int oldCapacity = this.buffer.length; + + int newCapacity = Math.min(oldCapacity << 1, this.maxArraySize); + + if (newCapacity < minCapacity) { + newCapacity = minCapacity; + } + + if (newCapacity > this.maxArraySize) { + throw new OutOfMemoryError(); + } + + this.buffer = Arrays.copyOf(this.buffer, newCapacity); + } +} From ca46967300b9c6bfa54130e4f0c39f31c978aaff Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Wed, 21 Aug 2019 18:11:38 +0300 Subject: [PATCH 27/42] DOC-236. Memory-optimized multibucket test --- .../storage/api/UserBasedDelegatingStorage.java | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java index 8456b183e..c8f9b8ff2 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java @@ -4,6 +4,7 @@ import de.adorsys.datasafe.types.api.resource.Uri; import java.util.Map; +import java.util.Optional; import java.util.concurrent.ConcurrentHashMap; import java.util.function.Function; @@ -21,13 +22,23 @@ public UserBasedDelegatingStorage(Function storageServic @Override protected StorageService service(AbsoluteLocation location) { + String bucketName = getBucketNameFromLocation(location); + return clientByBucket.computeIfAbsent(bucketName, storageServiceBuilder); + } + + @Override + public Optional flushChunkSize(AbsoluteLocation location) { + String bucketName = getBucketNameFromLocation(location); + return clientByBucket.computeIfAbsent(bucketName, storageServiceBuilder).flushChunkSize(location); + } + + private String getBucketNameFromLocation(AbsoluteLocation location) { Uri uri = location.location(); String[] parts = uri.getPath().replaceAll("^/", "").split("/"); String userName = "profiles".equals(parts[1]) ? parts[3] : parts[2]; String userNumber = userName.split("-")[1]; int userNum = Integer.parseInt(userNumber); String[] buckets = amazonBucket.split(","); - String bucketName = buckets[userNum % buckets.length]; - return clientByBucket.computeIfAbsent(bucketName, storageServiceBuilder); + return buckets[userNum % buckets.length]; } } From 5c1ca791bc17956a5fa0de71dea78fa444f0b40f Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Wed, 21 Aug 2019 18:50:41 +0300 Subject: [PATCH 28/42] DOC-236. Immediate stream dereference --- .../impl/document/CMSDocumentWriteService.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java index 96e0ff29e..ce592ddd7 100644 --- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java +++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/document/CMSDocumentWriteService.java @@ -18,6 +18,7 @@ import javax.inject.Inject; import java.io.IOException; import java.io.OutputStream; +import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Optional; @@ -147,8 +148,10 @@ public void write(byte[] bytes, int off, int len) throws IOException { @SneakyThrows public void close() { super.close(); - for (OutputStream destination : destinations) { - destination.close(); + Iterator dest = destinations.iterator(); + while (dest.hasNext()) { + dest.next().close(); + dest.remove(); } } } @@ -204,9 +207,13 @@ public void close() { // be retained only for 1 destination byte[] tailChunk = os.getBufferOrCopy(); int size = os.size(); - for (OutputStream destination : destinations) { + + Iterator dest = destinations.iterator(); + while (dest.hasNext()) { + OutputStream destination = dest.next(); destination.write(tailChunk, 0, size); destination.close(); + dest.remove(); } } From 58c8ecbe076d14cd5ce92fb6814606ed7a990523 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Thu, 22 Aug 2019 10:55:51 +0300 Subject: [PATCH 29/42] Start next iteration with 0.5.1-SNAPSHOT --- datasafe-business/pom.xml | 2 +- datasafe-directory/datasafe-directory-api/pom.xml | 2 +- datasafe-directory/datasafe-directory-impl/pom.xml | 2 +- datasafe-directory/pom.xml | 2 +- datasafe-encryption/datasafe-encryption-api/pom.xml | 2 +- datasafe-encryption/datasafe-encryption-impl/pom.xml | 2 +- datasafe-encryption/pom.xml | 2 +- datasafe-examples/datasafe-examples-business/pom.xml | 2 +- datasafe-examples/datasafe-examples-customize-dagger/pom.xml | 2 +- datasafe-examples/datasafe-examples-multidfs/pom.xml | 2 +- datasafe-examples/datasafe-examples-versioned-s3/pom.xml | 2 +- datasafe-examples/pom.xml | 2 +- datasafe-inbox/datasafe-inbox-api/pom.xml | 2 +- datasafe-inbox/datasafe-inbox-impl/pom.xml | 2 +- datasafe-inbox/pom.xml | 2 +- .../datasafe-business-tests-random-actions/pom.xml | 2 +- datasafe-long-run-tests/pom.xml | 2 +- datasafe-metainfo/datasafe-metainfo-version-api/pom.xml | 2 +- datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml | 2 +- datasafe-metainfo/pom.xml | 2 +- datasafe-privatestore/datasafe-privatestore-api/pom.xml | 2 +- datasafe-privatestore/datasafe-privatestore-impl/pom.xml | 2 +- datasafe-privatestore/pom.xml | 2 +- datasafe-rest-impl/pom.xml | 4 ++-- datasafe-runtime-delegate/pom.xml | 2 +- datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml | 2 +- datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml | 2 +- .../datasafe-simple-adapter-spring/pom.xml | 2 +- datasafe-simple-adapter/pom.xml | 2 +- datasafe-storage/datasafe-storage-api/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-db/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-fs/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-s3/pom.xml | 2 +- datasafe-storage/pom.xml | 2 +- datasafe-test-storages/pom.xml | 2 +- datasafe-types-api/pom.xml | 2 +- last-module-codecoverage-check/pom.xml | 2 +- pom.xml | 2 +- 38 files changed, 39 insertions(+), 39 deletions(-) diff --git a/datasafe-business/pom.xml b/datasafe-business/pom.xml index 031a25059..99e102cb6 100644 --- a/datasafe-business/pom.xml +++ b/datasafe-business/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-directory/datasafe-directory-api/pom.xml b/datasafe-directory/datasafe-directory-api/pom.xml index cf93993ee..8085215ea 100644 --- a/datasafe-directory/datasafe-directory-api/pom.xml +++ b/datasafe-directory/datasafe-directory-api/pom.xml @@ -3,7 +3,7 @@ de.adorsys datasafe-directory - 0.5 + 0.5.1-SNAPSHOT datasafe-directory-api diff --git a/datasafe-directory/datasafe-directory-impl/pom.xml b/datasafe-directory/datasafe-directory-impl/pom.xml index 9e20b8d53..a314ecac6 100644 --- a/datasafe-directory/datasafe-directory-impl/pom.xml +++ b/datasafe-directory/datasafe-directory-impl/pom.xml @@ -3,7 +3,7 @@ de.adorsys datasafe-directory - 0.5 + 0.5.1-SNAPSHOT datasafe-directory-impl diff --git a/datasafe-directory/pom.xml b/datasafe-directory/pom.xml index c85a8fe11..98022f8f1 100644 --- a/datasafe-directory/pom.xml +++ b/datasafe-directory/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-encryption/datasafe-encryption-api/pom.xml b/datasafe-encryption/datasafe-encryption-api/pom.xml index 3132dde9b..9c79996cb 100644 --- a/datasafe-encryption/datasafe-encryption-api/pom.xml +++ b/datasafe-encryption/datasafe-encryption-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-encryption - 0.5 + 0.5.1-SNAPSHOT datasafe-encryption-api diff --git a/datasafe-encryption/datasafe-encryption-impl/pom.xml b/datasafe-encryption/datasafe-encryption-impl/pom.xml index aba4ad810..4a8655c13 100644 --- a/datasafe-encryption/datasafe-encryption-impl/pom.xml +++ b/datasafe-encryption/datasafe-encryption-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-encryption - 0.5 + 0.5.1-SNAPSHOT datasafe-encryption-impl diff --git a/datasafe-encryption/pom.xml b/datasafe-encryption/pom.xml index 2e6eadb36..6d3b14c69 100644 --- a/datasafe-encryption/pom.xml +++ b/datasafe-encryption/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-examples/datasafe-examples-business/pom.xml b/datasafe-examples/datasafe-examples-business/pom.xml index e3242efcf..748fcf69e 100644 --- a/datasafe-examples/datasafe-examples-business/pom.xml +++ b/datasafe-examples/datasafe-examples-business/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5 + 0.5.1-SNAPSHOT datasafe-examples-business diff --git a/datasafe-examples/datasafe-examples-customize-dagger/pom.xml b/datasafe-examples/datasafe-examples-customize-dagger/pom.xml index dab3c79cb..483678eb7 100644 --- a/datasafe-examples/datasafe-examples-customize-dagger/pom.xml +++ b/datasafe-examples/datasafe-examples-customize-dagger/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5 + 0.5.1-SNAPSHOT datasafe-examples-customize-dagger diff --git a/datasafe-examples/datasafe-examples-multidfs/pom.xml b/datasafe-examples/datasafe-examples-multidfs/pom.xml index 4a6e4f1f9..02448c189 100644 --- a/datasafe-examples/datasafe-examples-multidfs/pom.xml +++ b/datasafe-examples/datasafe-examples-multidfs/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5 + 0.5.1-SNAPSHOT datasafe-examples-multidfs diff --git a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml index dfdfc5791..92635642e 100644 --- a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml +++ b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5 + 0.5.1-SNAPSHOT datasafe-examples-versioned-s3 diff --git a/datasafe-examples/pom.xml b/datasafe-examples/pom.xml index 181939226..4341f3a99 100644 --- a/datasafe-examples/pom.xml +++ b/datasafe-examples/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-inbox/datasafe-inbox-api/pom.xml b/datasafe-inbox/datasafe-inbox-api/pom.xml index d43d093d7..7a57ac3f2 100644 --- a/datasafe-inbox/datasafe-inbox-api/pom.xml +++ b/datasafe-inbox/datasafe-inbox-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-inbox - 0.5 + 0.5.1-SNAPSHOT datasafe-inbox-api diff --git a/datasafe-inbox/datasafe-inbox-impl/pom.xml b/datasafe-inbox/datasafe-inbox-impl/pom.xml index 6f29c7f2b..a74765081 100644 --- a/datasafe-inbox/datasafe-inbox-impl/pom.xml +++ b/datasafe-inbox/datasafe-inbox-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-inbox - 0.5 + 0.5.1-SNAPSHOT datasafe-inbox-impl diff --git a/datasafe-inbox/pom.xml b/datasafe-inbox/pom.xml index 6b87b3780..c0a8feb01 100644 --- a/datasafe-inbox/pom.xml +++ b/datasafe-inbox/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml index f3bb74a5b..c3bd85b68 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml @@ -5,7 +5,7 @@ datasafe-long-run-tests de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-long-run-tests/pom.xml b/datasafe-long-run-tests/pom.xml index c91851153..a36758d00 100644 --- a/datasafe-long-run-tests/pom.xml +++ b/datasafe-long-run-tests/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml b/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml index 928de1be6..52c217d0e 100644 --- a/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml +++ b/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-metainfo - 0.5 + 0.5.1-SNAPSHOT datasafe-metainfo-version-api diff --git a/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml b/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml index d749fc0e0..cc9792240 100644 --- a/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml +++ b/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-metainfo - 0.5 + 0.5.1-SNAPSHOT datasafe-metainfo-version-impl diff --git a/datasafe-metainfo/pom.xml b/datasafe-metainfo/pom.xml index fbbe5e146..72424b08d 100644 --- a/datasafe-metainfo/pom.xml +++ b/datasafe-metainfo/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-privatestore/datasafe-privatestore-api/pom.xml b/datasafe-privatestore/datasafe-privatestore-api/pom.xml index 745ea7d39..6348d7f2a 100644 --- a/datasafe-privatestore/datasafe-privatestore-api/pom.xml +++ b/datasafe-privatestore/datasafe-privatestore-api/pom.xml @@ -5,7 +5,7 @@ datasafe-privatestore de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-privatestore/datasafe-privatestore-impl/pom.xml b/datasafe-privatestore/datasafe-privatestore-impl/pom.xml index 855c60cfa..892b32a20 100644 --- a/datasafe-privatestore/datasafe-privatestore-impl/pom.xml +++ b/datasafe-privatestore/datasafe-privatestore-impl/pom.xml @@ -5,7 +5,7 @@ datasafe-privatestore de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-privatestore/pom.xml b/datasafe-privatestore/pom.xml index 1bd11e4d7..4fd29eddf 100644 --- a/datasafe-privatestore/pom.xml +++ b/datasafe-privatestore/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-rest-impl/pom.xml b/datasafe-rest-impl/pom.xml index 0aa96dd9f..7c3706784 100644 --- a/datasafe-rest-impl/pom.xml +++ b/datasafe-rest-impl/pom.xml @@ -5,11 +5,11 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT datasafe-rest-impl - 0.5 + 0.5.1-SNAPSHOT datasafe-rest-impl Spring Boot DataSafe Application diff --git a/datasafe-runtime-delegate/pom.xml b/datasafe-runtime-delegate/pom.xml index 08c82cf2e..900733f4b 100644 --- a/datasafe-runtime-delegate/pom.xml +++ b/datasafe-runtime-delegate/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe - 0.5 + 0.5.1-SNAPSHOT datasafe-runtime-delegate diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml index 82ee830b5..8435d7c3f 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml index 2c215dd59..f1bae7c9a 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml index 89451d41f..ec67b7e3e 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-simple-adapter/pom.xml b/datasafe-simple-adapter/pom.xml index 15d6c1134..ca4f0b012 100644 --- a/datasafe-simple-adapter/pom.xml +++ b/datasafe-simple-adapter/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-storage/datasafe-storage-api/pom.xml b/datasafe-storage/datasafe-storage-api/pom.xml index 59a56180f..bf852c6d7 100644 --- a/datasafe-storage/datasafe-storage-api/pom.xml +++ b/datasafe-storage/datasafe-storage-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-storage - 0.5 + 0.5.1-SNAPSHOT datasafe-storage-api diff --git a/datasafe-storage/datasafe-storage-impl-db/pom.xml b/datasafe-storage/datasafe-storage-impl-db/pom.xml index 39ba789df..b483bc2c1 100644 --- a/datasafe-storage/datasafe-storage-impl-db/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-db/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-storage/datasafe-storage-impl-fs/pom.xml b/datasafe-storage/datasafe-storage-impl-fs/pom.xml index 159deb2d4..51403ac91 100644 --- a/datasafe-storage/datasafe-storage-impl-fs/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-fs/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-storage/datasafe-storage-impl-s3/pom.xml b/datasafe-storage/datasafe-storage-impl-s3/pom.xml index b92929360..7836645dc 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-s3/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-storage/pom.xml b/datasafe-storage/pom.xml index cc6b33563..ff1e3d31a 100644 --- a/datasafe-storage/pom.xml +++ b/datasafe-storage/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-test-storages/pom.xml b/datasafe-test-storages/pom.xml index 491e40f9f..ba18f93b0 100644 --- a/datasafe-test-storages/pom.xml +++ b/datasafe-test-storages/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/datasafe-types-api/pom.xml b/datasafe-types-api/pom.xml index 7d2865fad..7c4228f89 100644 --- a/datasafe-types-api/pom.xml +++ b/datasafe-types-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe - 0.5 + 0.5.1-SNAPSHOT datasafe-types-api diff --git a/last-module-codecoverage-check/pom.xml b/last-module-codecoverage-check/pom.xml index c09391ac3..e009e4956 100644 --- a/last-module-codecoverage-check/pom.xml +++ b/last-module-codecoverage-check/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5 + 0.5.1-SNAPSHOT 4.0.0 diff --git a/pom.xml b/pom.xml index 6ec854950..4ea80be11 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ de.adorsys datasafe - 0.5 + 0.5.1-SNAPSHOT datasafe Datasafe https://github.com/adorsys/datasafe From d0bb1ab1832a2a29123e108f71d8dc5cab489f17 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Thu, 22 Aug 2019 12:34:57 +0200 Subject: [PATCH 30/42] review fixes --- .../RandomActionsOnDatasafeTest.java | 2 +- .../RandomActionsOnMultiBucketTest.java | 4 +- .../framework/BaseRandomActions.java | 43 +++++++++++++------ .../api/UriBasedAuthStorageService.java | 6 +-- .../api/UserBasedDelegatingStorage.java | 30 +++++++------ .../teststorage/WithStorageProvider.java | 30 ++++++------- 6 files changed, 66 insertions(+), 49 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java index 5c2f17e6d..98b5d9da5 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java @@ -31,7 +31,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo StatisticService statisticService = new StatisticService(); executeTest( - mediumFixture(), + getFixture(), descriptor.getName(), filesizeInKb, threadCount, diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java index 9a3d4ef5c..31b6f08e8 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -23,7 +23,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo StatisticService statisticService = new StatisticService(); executeTest( - mediumFixture(), + getFixture(), descriptor.getName(), filesizeInMb, threadCount, @@ -41,7 +41,7 @@ private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) { return DaggerDefaultDatasafeServices .builder() .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT")) - .storage(new UserBasedDelegatingStorage(storageServiceByBucket(), amazonBucket)) + .storage(new UserBasedDelegatingStorage(storageServiceByBucket(), amazonBuckets)) .build(); } } diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index f5ee3fd63..1272c37f3 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -61,6 +61,11 @@ public abstract class BaseRandomActions extends WithStorageProvider { .mapToInt(Integer::parseInt).boxed().collect(Collectors.toList()) ); + private static final List STORAGE_PROVIDERS = + Arrays.asList(readPropOrEnv("STORAGE_PROVIDERS", "MINIO").split(",")); + + private static final String FIXTURE_SIZE = readPropOrEnv("FIXTURE_SIZE", "SMALL"); + @BeforeEach void prepare() { // Enable logging obfuscation @@ -68,20 +73,16 @@ void prepare() { System.setProperty("SECURE_SENSITIVE", "on"); } - protected Fixture smallSimpleDocusafeAdapterFixture() { - return fixture("fixture/fixture_simple_datasafe_200_ops.json"); - } - - protected Fixture smallFixture() { - return fixture("fixture/fixture_200_ops.json"); - } - - protected Fixture mediumFixture() { - return fixture("fixture/fixture_1000_ops.json"); + protected Fixture getFixture() { + switch(FIXTURE_SIZE) { + case "MEDIUM" : return fixture("fixture/fixture_1000_ops.json"); + case "BIG" : return fixture("fixture/fixture_10000_ops.json"); + default : return fixture("fixture/fixture_200_ops.json"); + } } - protected Fixture bigFixture() { - return fixture("fixture/fixture_10000_ops.json"); + protected Fixture smallSimpleDocusafeAdapterFixture() { + return fixture("fixture/fixture_simple_datasafe_200_ops.json"); } @SneakyThrows @@ -96,12 +97,28 @@ protected Fixture fixture(String path) { @ValueSource protected static Stream actionsOnSoragesAndThreadsAndFilesizes() { return Sets.cartesianProduct( - Collections.singleton(s3()), + getStorageDescriptors(), THREAD_COUNT, FILE_SIZE_K_BYTES ).stream().map(it -> Arguments.of(it.get(0), it.get(1), it.get(2))); } + private static Set getStorageDescriptors() { + return STORAGE_PROVIDERS.stream().map(it -> { + switch (it) { + case "AMAZON": + return s3(); + case "MINIO": + return minio(); + case "CEPH": + return cephVersioned(); + case "FILESYSTEM": + return fs(); + } + return null; + }).filter(Objects::nonNull).collect(Collectors.toSet()); + } + protected void executeTest( Fixture fixture, StorageDescriptorName storageName, diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UriBasedAuthStorageService.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UriBasedAuthStorageService.java index 7e4243c42..c43011cd1 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UriBasedAuthStorageService.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UriBasedAuthStorageService.java @@ -22,6 +22,9 @@ public class UriBasedAuthStorageService extends BaseDelegatingStorage { private final Function bucketExtractor; private final Function endpointExtractor; + // Builder to create S3 or other kind of Storage service + private final Function storageServiceBuilder; + /** * Expects bucket name to be first part of URI part, and endpoint to host + bucket name. */ @@ -33,9 +36,6 @@ public UriBasedAuthStorageService(Function storageServ this.bucketExtractor.apply(location); } - // Builder to create S3 or other kind of Storage service - private final Function storageServiceBuilder; - @Override protected StorageService service(AbsoluteLocation location) { String[] authority = location.location().asURI().getAuthority().split("@")[0].split(":"); diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java index c8f9b8ff2..c3e99f6da 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java @@ -1,25 +1,27 @@ package de.adorsys.datasafe.storage.api; import de.adorsys.datasafe.types.api.resource.AbsoluteLocation; -import de.adorsys.datasafe.types.api.resource.Uri; +import java.util.List; import java.util.Map; import java.util.Optional; import java.util.concurrent.ConcurrentHashMap; import java.util.function.Function; +import java.util.regex.Matcher; +import java.util.regex.Pattern; public class UserBasedDelegatingStorage extends BaseDelegatingStorage { private final Map clientByBucket = new ConcurrentHashMap<>(); - private final String amazonBucket; - - public UserBasedDelegatingStorage(Function storageServiceBuilder, String amazonBucket) { - this.storageServiceBuilder = storageServiceBuilder; - this.amazonBucket = amazonBucket; - } + private final List amazonBuckets; // Builder to create S3 or other kind of Storage service private final Function storageServiceBuilder; + public UserBasedDelegatingStorage(Function storageServiceBuilder, List amazonBuckets) { + this.storageServiceBuilder = storageServiceBuilder; + this.amazonBuckets = amazonBuckets; + } + @Override protected StorageService service(AbsoluteLocation location) { String bucketName = getBucketNameFromLocation(location); @@ -33,12 +35,12 @@ public Optional flushChunkSize(AbsoluteLocation location) { } private String getBucketNameFromLocation(AbsoluteLocation location) { - Uri uri = location.location(); - String[] parts = uri.getPath().replaceAll("^/", "").split("/"); - String userName = "profiles".equals(parts[1]) ? parts[3] : parts[2]; - String userNumber = userName.split("-")[1]; - int userNum = Integer.parseInt(userNumber); - String[] buckets = amazonBucket.split(","); - return buckets[userNum % buckets.length]; + // example location: s3://datasafe-test1/073047da-dd68-4f70-b9bf-5759d7e30c85/users/user-8/private/files/ + // s3://datasafe-test1/073047da-dd68-4f70-b9bf-5759d7e30c85/profiles/private/user-3/ + Pattern userPattern = Pattern.compile(".+/user-(\\d+)/.+"); + Matcher matcher = userPattern.matcher(location.location().asString()); + matcher.matches(); + int userNum = Integer.valueOf(matcher.group(1)); + return amazonBuckets.get(userNum % amazonBuckets.size()); } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index fc5400978..ead7af66a 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -34,6 +34,8 @@ import java.nio.file.Path; import java.time.Duration; +import java.util.Arrays; +import java.util.List; import java.util.Objects; import java.util.UUID; import java.util.concurrent.ExecutorService; @@ -49,6 +51,7 @@ @Getter public abstract class WithStorageProvider extends BaseMockitoTest { public static final String SKIP_CEPH = "SKIP_CEPH"; + public static final String CEPH_REGION = "US"; private static String bucketPath = UUID.randomUUID().toString(); @@ -74,7 +77,8 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String amazonAccessKeyID = readPropOrEnv("AWS_ACCESS_KEY"); private static String amazonSecretAccessKey = readPropOrEnv("AWS_SECRET_KEY"); private static String amazonRegion = readPropOrEnv("AWS_REGION", "eu-central-1"); - protected static String amazonBucket = readPropOrEnv("AWS_BUCKET", "adorsys-docusafe"); + protected static List amazonBuckets = + Arrays.asList(readPropOrEnv("AWS_BUCKET", "adorsys-docusafe").split(",")); private static String amazonUrl = readPropOrEnv("AWS_URL"); private static String amazonMappedUrl; @@ -130,12 +134,7 @@ void cleanup() { } if (null != amazonS3) { - String[] buckets = amazonBucket.split(","); - if (buckets.length > 1) { - Stream.of(buckets).forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath)); - } else { - removeObjectFromS3(amazonS3, amazonBucket, bucketPath); - } + amazonBuckets.forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath)); } } @@ -261,13 +260,13 @@ protected static StorageDescriptor s3() { StorageDescriptorName.AMAZON, () -> { amazonSotrage.get(); - return new S3StorageService(amazonS3, amazonBucket, EXECUTOR_SERVICE); + return new S3StorageService(amazonS3, amazonBuckets.get(0), EXECUTOR_SERVICE); }, - new Uri("s3://" + amazonBucket + "/" + bucketPath + "/"), + new Uri("s3://" + amazonBuckets.get(0) + "/" + bucketPath + "/"), amazonAccessKeyID, amazonSecretAccessKey, amazonRegion, - amazonBucket + "/" + bucketPath + amazonBuckets.get(0) + "/" + bucketPath ); } @@ -291,22 +290,21 @@ private static void initS3() { new BasicAWSCredentials(amazonAccessKeyID, amazonSecretAccessKey)) ); - String[] buckets = amazonBucket.split(","); - if (buckets.length > 1) { - log.info("Using {} buckets:{}", buckets.length, amazonBucket); + if (amazonBuckets.size() > 1) { + log.info("Using {} buckets:{}", amazonBuckets.size(), amazonBuckets); } if (StringUtils.isNullOrEmpty(amazonUrl)) { amazonS3ClientBuilder = amazonS3ClientBuilder.withRegion(amazonRegion); - amazonMappedUrl = "s3://" + buckets[0] + "/" + bucketPath + "/"; + amazonMappedUrl = "s3://" + amazonBuckets.get(0) + "/" + bucketPath + "/"; } else { amazonS3ClientBuilder = amazonS3ClientBuilder .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP)) .withEndpointConfiguration( - new AwsClientBuilder.EndpointConfiguration(amazonUrl, "US") + new AwsClientBuilder.EndpointConfiguration(amazonUrl, CEPH_REGION) ) .enablePathStyleAccess(); - amazonMappedUrl = "http://" + amazonBucket + "." + amazonUrl; + amazonMappedUrl = "http://" + amazonBuckets.get(0) + "." + amazonUrl; } amazonS3 = amazonS3ClientBuilder.build(); From 1b69d8d8eb7caf2718da640e2052f4442daf3503 Mon Sep 17 00:00:00 2001 From: Maxim Grischenko Date: Thu, 22 Aug 2019 16:02:23 +0200 Subject: [PATCH 31/42] changed log level --- .../simple/adapter/impl/SwitchableCmsEncryptionImpl.java | 6 +++--- .../simple/adapter/impl/SwitchablePathEncryptionImpl.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchableCmsEncryptionImpl.java b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchableCmsEncryptionImpl.java index 28acd9fa0..990d59008 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchableCmsEncryptionImpl.java +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchableCmsEncryptionImpl.java @@ -54,16 +54,16 @@ public static boolean checkCmsEnccryptionToUse() { String value = System.getProperty(NO_CMSENCRYPTION_AT_ALL); if (value != null) { if (value.equalsIgnoreCase(Boolean.FALSE.toString())) { - log.info("cms encryption is on"); + log.debug("cms encryption is on"); return true; } if (value.equalsIgnoreCase(Boolean.TRUE.toString())) { - log.info("cms encryption is off"); + log.debug("cms encryption is off"); return false; } throw new RuntimeException("value " + value + " for " + NO_CMSENCRYPTION_AT_ALL + " is unknown"); } - log.info("cms encryption is on"); + log.debug("cms encryption is on"); return true; } } diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchablePathEncryptionImpl.java b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchablePathEncryptionImpl.java index 32901773a..a468009be 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchablePathEncryptionImpl.java +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/src/main/java/de/adorsys/datasafe/simple/adapter/impl/SwitchablePathEncryptionImpl.java @@ -42,16 +42,16 @@ public static boolean checkIsPathEncryptionToUse() { String value = System.getProperty(NO_BUCKETPATH_ENCRYPTION); if (value != null) { if (value.equalsIgnoreCase(Boolean.FALSE.toString())) { - log.info("path encryption is on"); + log.debug("path encryption is on"); return true; } if (value.equalsIgnoreCase(Boolean.TRUE.toString())) { - log.info("path encryption is off"); + log.debug("path encryption is off"); return false; } throw new RuntimeException("value " + value + " for " + NO_BUCKETPATH_ENCRYPTION + " is unknown"); } - log.info("path encryption is on"); + log.debug("path encryption is on"); return true; } From 5c0b3e9ff3cfec443dc90cfff9ef0e6f2f0c9f44 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Thu, 22 Aug 2019 17:49:16 +0300 Subject: [PATCH 32/42] Fixed demo scripts --- .../2.startDockerImageWithAmazon.sh.template | 5 +- .../2.startDockerImageWithMinio.sh | 69 +++++++++++++++++++ .../rest/impl/config/DatasafeConfig.java | 41 +++++++---- .../src/main/resources/application.properties | 4 +- 4 files changed, 100 insertions(+), 19 deletions(-) create mode 100755 datasafe-rest-impl/2.startDockerImageWithMinio.sh diff --git a/datasafe-rest-impl/2.startDockerImageWithAmazon.sh.template b/datasafe-rest-impl/2.startDockerImageWithAmazon.sh.template index 1fc2d3590..fc5f41ccc 100755 --- a/datasafe-rest-impl/2.startDockerImageWithAmazon.sh.template +++ b/datasafe-rest-impl/2.startDockerImageWithAmazon.sh.template @@ -23,9 +23,10 @@ docker run \ -e DEFAULT_USER=your_user_to_come_to_the_rest_api \ -e DEFAULT_PASSWORD=password_for_rest_api \ -p 8080:8080 \ - -e AWS_ACCESS_KEY= \ - -e AWS_SECRET_KEY= \ + -e AWS_ACCESS_KEY_ID= \ + -e AWS_SECRET_ACCESS_KEY= \ -e AWS_BUCKET= \ -e AWS_REGION= \ + -e DATASAFE_S3_STORAGE=true \ -e EXPOSE_API_CREDS=true \ datasafe-rest-test:latest diff --git a/datasafe-rest-impl/2.startDockerImageWithMinio.sh b/datasafe-rest-impl/2.startDockerImageWithMinio.sh new file mode 100755 index 000000000..6c21a75d3 --- /dev/null +++ b/datasafe-rest-impl/2.startDockerImageWithMinio.sh @@ -0,0 +1,69 @@ +#!/bin/bash + +###### TODO: Make it as docker-compose? + +AWS_KEY=accessKey +AWS_SECRET=secretKey +BUCKET=demo-bucket +API_USER=root +API_PASSWORD=root + +trap stop SIGINT + +function stop() { + echo Terminating + docker stop -t 0 datasafe-rest-test + docker stop -t 0 datasafe-minio + docker network rm datasafe-test +} + +echo ===================================================== +echo "PLEASE VISIT http://localhost:8080/static/index.html" +echo "MINIO secret key / access key - ${AWS_KEY}/${AWS_SECRET}" +echo +which pbcopy +if (( $? == 0 )) +then + echo "http://localhost:8080/static/index.html" | pbcopy + echo "this url is already in your clipboard :-)" +fi +echo "pres CTRL-C to stop container" +echo +echo ===================================================== + +docker network create --attachable -d overlay datasafe-test + +docker run \ + --rm \ + -d \ + -it \ + --name datasafe-minio \ + --network=datasafe-test \ + -p 9000:9000 \ + -e MINIO_ACCESS_KEY="${AWS_KEY}" \ + -e MINIO_SECRET_KEY="${AWS_SECRET}" \ + --entrypoint "/bin/sh" \ + minio/minio \ + -c "mkdir -p /data/${BUCKET} && /usr/bin/minio server /data" + +MINIO_IP=`docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' datasafe-minio` + +docker run \ + --rm \ + -it \ + -d \ + --network=datasafe-test \ + --name datasafe-rest-test \ + -p 8080:8080 \ + -e JWT_SECRET=jnknjknvkjdfnjkvnkdfnvjkndfivfnjkvnskcnncjksnjkvndjfknjkvndfknvjk \ + -e DEFAULT_USER="${API_USER}" \ + -e DEFAULT_PASSWORD="${API_PASSWORD}" \ + -e DATASAFE_AMAZON_URL=http://${MINIO_IP}:9000 \ + -e AWS_ACCESS_KEY_ID="${AWS_KEY}" \ + -e AWS_SECRET_ACCESS_KEY="${AWS_SECRET}" \ + -e AWS_BUCKET="${BUCKET}" \ + -e DATASAFE_S3_STORAGE=true \ + -e EXPOSE_API_CREDS=true \ + datasafe-rest-test:latest + +tail -f /dev/null diff --git a/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java b/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java index 859af88d1..200853ac6 100644 --- a/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java +++ b/datasafe-rest-impl/src/main/java/de/adorsys/datasafe/rest/impl/config/DatasafeConfig.java @@ -59,12 +59,19 @@ public class DatasafeConfig { public static final String FILESYSTEM_ENV = "USE_FILESYSTEM"; public static final String CLIENT_CREDENTIALS = "ALLOW_CLIENT_S3_CREDENTIALS"; + public static final String DATASAFE_S3_STORAGE = "DATASAFE_S3_STORAGE"; private static final Set ALLOWED_TABLES = ImmutableSet.of("private_profiles", "public_profiles"); @Bean - @ConditionalOnProperty(name = "DATASAFE_SINGLE_STORAGE", havingValue = "true") - DFSConfig singleDfsConfig(DatasafeProperties properties) { + @ConditionalOnProperty(name = DATASAFE_S3_STORAGE, havingValue = "true") + DFSConfig singleDfsConfigS3(DatasafeProperties properties) { + return new DefaultDFSConfig(properties.getSystemRoot(), properties.getKeystorePassword()); + } + + @Bean + @ConditionalOnProperty(FILESYSTEM_ENV) + DFSConfig singleDfsConfigFilesystem(DatasafeProperties properties) { return new DefaultDFSConfig(properties.getSystemRoot(), properties.getKeystorePassword()); } @@ -121,16 +128,6 @@ VersionedDatasafeServices versionedDatasafeServices(StorageService storageServic .build(); } - @Bean - @ConditionalOnProperty(FILESYSTEM_ENV) - StorageService fsStorageService(DatasafeProperties properties) { - String root = System.getenv(FILESYSTEM_ENV); - log.info("==================== FILESYSTEM"); - log.info("build DFS to FILESYSTEM with root " + root); - properties.setSystemRoot(root); - return new FileSystemStorageService(Paths.get(root)); - } - @Bean @ConditionalOnProperty(value = CLIENT_CREDENTIALS, havingValue = "true") StorageService clientCredentials(AmazonS3 s3, DatasafeProperties properties) { @@ -163,12 +160,25 @@ StorageService clientCredentials(AmazonS3 s3, DatasafeProperties properties) { ); } + /** + * @return Filesystem based storage service + */ + @Bean + @ConditionalOnProperty(FILESYSTEM_ENV) + StorageService singleStorageServiceFilesystem(DatasafeProperties properties) { + String root = System.getenv(FILESYSTEM_ENV); + log.info("==================== FILESYSTEM"); + log.info("build DFS to FILESYSTEM with root " + root); + properties.setSystemRoot(root); + return new FileSystemStorageService(Paths.get(root)); + } + /** * @return S3 based storage service */ @Bean - @ConditionalOnProperty(name = "DATASAFE_SINGLE_STORAGE", havingValue = "true") - StorageService singleStorageService(AmazonS3 s3, DatasafeProperties properties) { + @ConditionalOnProperty(name = DATASAFE_S3_STORAGE, havingValue = "true") + StorageService singleStorageServiceS3(AmazonS3 s3, DatasafeProperties properties) { return new S3StorageService( s3, properties.getBucketName(), @@ -204,6 +214,7 @@ StorageService multiStorageService(DatasafeProperties properties) { } @Bean + @org.springframework.context.annotation.Lazy AmazonS3 s3(DatasafeProperties properties) { AmazonS3 amazonS3; @@ -216,7 +227,7 @@ AmazonS3 s3(DatasafeProperties properties) { AmazonS3ClientBuilder builder = AmazonS3ClientBuilder.standard() .withCredentials(credentialsProvider); - if(useEndpoint) { + if (useEndpoint) { builder = builder.withEndpointConfiguration( new AwsClientBuilder.EndpointConfiguration( properties.getAmazonUrl(), diff --git a/datasafe-rest-impl/src/main/resources/application.properties b/datasafe-rest-impl/src/main/resources/application.properties index 906f5a06a..222fcfafb 100644 --- a/datasafe-rest-impl/src/main/resources/application.properties +++ b/datasafe-rest-impl/src/main/resources/application.properties @@ -9,8 +9,8 @@ spring.servlet.multipart.max-file-size=1024MB spring.servlet.multipart.max-request-size=1024MB # Amazon -datasafe.amazonSecretAccessKey=${AWS_SECRET_ACCESS_KEY} datasafe.amazonAccessKeyID=${AWS_ACCESS_KEY_ID} +datasafe.amazonSecretAccessKey=${AWS_SECRET_ACCESS_KEY} datasafe.amazonRegion=${AWS_REGION} # MinIO @@ -29,4 +29,4 @@ datasafe.dbUrl=${MYSQL_URL} datasafe.dbUsername=${MYSQL_USER} datasafe.dbPassword=${MYSQL_PASSWORD} -spring.liquibase.enabled=false \ No newline at end of file +spring.liquibase.enabled=false From 3fbdd5608675bd82fdad618d176e0f312c20b51c Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 11:54:57 +0300 Subject: [PATCH 33/42] Added features section --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 998351cd4..cbc361188 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,27 @@ wants to share into users' inbox space using the recipients' public key so that - For storage systems that do not support file versioning natively (i.e. minio) this library provides versioning capability too. +## Features + +- Proprietary software **friendly license** +- **Flexibility** - you can easily change encryption and configure or customize other aspects of library +- AES encryption using **CMS-envelopes** for increased security and interoperability with other languages +- **Extra protection layer** - encryption using securely generated keys that are completely unrelated to your password +- **Client side encryption** - you own your data +- Works with filesystem and Amazon S3 compatible storage - S3, minio, CEPH, etc. +- File names are encrypted +- Thorough testing + +## Building project +Without tests: +```bash +mvn clean install -DskipTests=true +``` +Full build: +```bash +mvn clean install +``` + # Project overview In short, Datasafe [core logic](datasafe-business/src/main/java/de/adorsys/datasafe/business/impl/service/DefaultDatasafeServices.java) provides these key services: From 8fe61e48455f2fa16ea6a5dc225ad9c808fe72a9 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 12:45:01 +0300 Subject: [PATCH 34/42] Added demo docs --- README.md | 20 +++++++------ datasafe-rest-impl/DEMO.md | 57 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 8 deletions(-) create mode 100644 datasafe-rest-impl/DEMO.md diff --git a/README.md b/README.md index cbc361188..e28960ce2 100644 --- a/README.md +++ b/README.md @@ -21,14 +21,14 @@ capability too. ## Features -- Proprietary software **friendly license** -- **Flexibility** - you can easily change encryption and configure or customize other aspects of library -- AES encryption using **CMS-envelopes** for increased security and interoperability with other languages -- **Extra protection layer** - encryption using securely generated keys that are completely unrelated to your password -- **Client side encryption** - you own your data -- Works with filesystem and Amazon S3 compatible storage - S3, minio, CEPH, etc. -- File names are encrypted -- Thorough testing +- Proprietary software **friendly license** +- **Flexibility** - you can easily change encryption and configure or customize other aspects of library +- AES encryption using **CMS-envelopes** for increased security and interoperability with other languages +- **Extra protection layer** - encryption using securely generated keys that are completely unrelated to your password +- **Client side encryption** - you own your data +- Works with filesystem and Amazon S3 compatible storage - S3, minio, CEPH, etc. +- File names are encrypted +- Thorough testing ## Building project Without tests: @@ -40,6 +40,10 @@ Full build: mvn clean install ``` +## Quick demo + +[Here](datasafe-rest-impl/DEMO.md) you can find quick demo of project capabilities with instructions how to use it. + # Project overview In short, Datasafe [core logic](datasafe-business/src/main/java/de/adorsys/datasafe/business/impl/service/DefaultDatasafeServices.java) provides these key services: diff --git a/datasafe-rest-impl/DEMO.md b/datasafe-rest-impl/DEMO.md new file mode 100644 index 000000000..45c69f2d6 --- /dev/null +++ b/datasafe-rest-impl/DEMO.md @@ -0,0 +1,57 @@ +# Library demo + +This example will demonstrate how Datasafe can read/encrypt/decrypt files. + +For demonstration purposes, library is wrapped into REST interface using Spring, +so that it is acting as data-encryption server that encrypts data and stores it on S3 or filesystem. +In real usecase, of course, there will be no REST server and client will call same library functions directly. + +## Prerequisites + +To **build** demo from sources (you can skip it and pull from docker registry): + +- Docker +- Node.js for UI + +To **run** demo: + +- Docker + +## Building and running demo + +### Building + +- Build from sources + +```bash +cd datasafe-rest-impl +./1.createDockerimage.sh +``` + +- Or pull image from docker registry: + +```bash +docker pull adorsys/datasafe && docker tag adorsys/datasafe adorsys/datasafe-rest-test +``` + +### Running + +Run using local filesystem, all data will be stored in `target/ROOT_BUCKET` folder: +```bash +cd datasafe-rest-impl +./2.startDockerImageWithLocalFilesystem.sh +``` + +Run using minio S3-compatible storage, all stored data can be viewed using +[minio UI](http://localhost:9000/minio/), minio credentials are `accessKey/secretKey`: +```bash +cd datasafe-rest-impl +./2.startDockerImageWithMinio.sh +``` + +Frontend will be available [here](http://localhost:8080/static/index.html) +There you can: +- Create new user +- Login as user +- Change REST api endpoint +- After logging in you will be able to encrypt and store your files. From 72b30a8a72cb2a7d189d80b6e43b5fc0fd6cda6f Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 12:52:40 +0300 Subject: [PATCH 35/42] Added demo docs --- datasafe-rest-impl/DEMO.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/datasafe-rest-impl/DEMO.md b/datasafe-rest-impl/DEMO.md index 45c69f2d6..a9c3f1a88 100644 --- a/datasafe-rest-impl/DEMO.md +++ b/datasafe-rest-impl/DEMO.md @@ -50,8 +50,14 @@ cd datasafe-rest-impl ``` Frontend will be available [here](http://localhost:8080/static/index.html) -There you can: + +Using frontend you can: - Create new user - Login as user - Change REST api endpoint - After logging in you will be able to encrypt and store your files. + +By viewing requests done in browser or using REST-documentation, you can see how each operation is implemented +with Datasafe. Endpoint code is [here](src/main/java/de/adorsys/datasafe/rest/impl/controller). + +Also you can always check [Datasafe-examples folder](../datasafe-examples) to see how something can be done with Datasafe. From b7adc528dea41088239bbf67b1c7b9c8c12f8cd6 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 13:03:17 +0300 Subject: [PATCH 36/42] Added maven references --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e28960ce2..cb519ef7c 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,37 @@ mvn clean install ## Quick demo -[Here](datasafe-rest-impl/DEMO.md) you can find quick demo of project capabilities with instructions how to use it. +[Here](datasafe-rest-impl/DEMO.md) you can find quick demo of project capabilities with instructions how to use it. + +## Adding to your project + +Datasafe is available from maven-central repository, you can add it to your project using: +```xml + + de.adorsys + datasafe-business + 0.5.0 + +``` + +To add filesystem storage provider: +```xml + + de.adorsys + datasafe-storage-impl-fs + 0.5.0 + +``` + +To add S3 storage provider: +```xml + + de.adorsys + datasafe-storage-impl-s3 + 0.5.0 + +``` + # Project overview In short, Datasafe [core logic](datasafe-business/src/main/java/de/adorsys/datasafe/business/impl/service/DefaultDatasafeServices.java) From 24283fabf73ef635144751af22165d1692455e6b Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 15:12:11 +0300 Subject: [PATCH 37/42] Change tag command --- datasafe-rest-impl/DEMO.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasafe-rest-impl/DEMO.md b/datasafe-rest-impl/DEMO.md index a9c3f1a88..9c6cf7dfd 100644 --- a/datasafe-rest-impl/DEMO.md +++ b/datasafe-rest-impl/DEMO.md @@ -31,7 +31,7 @@ cd datasafe-rest-impl - Or pull image from docker registry: ```bash -docker pull adorsys/datasafe && docker tag adorsys/datasafe adorsys/datasafe-rest-test +docker pull adorsys/datasafe && docker tag adorsys/datasafe datasafe-rest-test:latest ``` ### Running From 4183e449395b458da2c269e0b90cc57d1cb29cd0 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 15:51:16 +0300 Subject: [PATCH 38/42] DOC-236. Run multibucket on minio too --- .../RandomActionsOnDatasafeTest.java | 2 +- .../RandomActionsOnMultiBucketTest.java | 13 +++- ...domActionsOnSimpleDatasafeAdapterTest.java | 2 +- .../framework/BaseRandomActions.java | 2 +- .../api/UserBasedDelegatingStorage.java | 4 +- .../teststorage/WithStorageProvider.java | 62 ++++++++++--------- 6 files changed, 47 insertions(+), 38 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java index 98b5d9da5..1c0412748 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java @@ -25,7 +25,7 @@ class RandomActionsOnDatasafeTest extends BaseRandomActions { @ParameterizedTest - @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") + @MethodSource("actionsOnStoragesAndThreadsAndFilesizes") void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInKb) { DefaultDatasafeServices datasafeServices = datasafeServices(descriptor); StatisticService statisticService = new StatisticService(); diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java index 31b6f08e8..a8d905889 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -10,15 +10,22 @@ import org.junit.jupiter.api.condition.DisabledIfSystemProperty; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; +import org.testcontainers.shaded.com.google.common.collect.ImmutableList; import static de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions.DISABLE_RANDOM_ACTIONS_TEST; @Slf4j @DisabledIfSystemProperty(named = DISABLE_RANDOM_ACTIONS_TEST, matches = "true") -public class RandomActionsOnMultiBucketTest extends BaseRandomActions { +class RandomActionsOnMultiBucketTest extends BaseRandomActions { + @ParameterizedTest - @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") + @MethodSource("actionsOnStoragesAndThreadsAndFilesizes") void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) { + + if (descriptor.getName().equals(StorageDescriptorName.MINIO) && buckets.size() == 1) { + buckets = ImmutableList.of("bucket-one", "bucket-two", "bucket-three"); + } + DefaultDatasafeServices datasafeServices = datasafeServices(descriptor); StatisticService statisticService = new StatisticService(); @@ -41,7 +48,7 @@ private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) { return DaggerDefaultDatasafeServices .builder() .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT")) - .storage(new UserBasedDelegatingStorage(storageServiceByBucket(), amazonBuckets)) + .storage(new UserBasedDelegatingStorage(storageServiceByBucket(), buckets)) .build(); } } diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java index 57193a059..3e2775d72 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java @@ -44,7 +44,7 @@ class RandomActionsOnSimpleDatasafeAdapterTest extends BaseRandomActions { @ParameterizedTest - @MethodSource("actionsOnSoragesAndThreadsAndFilesizes") + @MethodSource("actionsOnStoragesAndThreadsAndFilesizes") void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInKb) { DefaultDatasafeServices datasafeServices = datasafeServicesFromSimpleDatasafeAdapter(descriptor); StatisticService statisticService = new StatisticService(); diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index 1272c37f3..ca6a41bd0 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -95,7 +95,7 @@ protected Fixture fixture(String path) { } @ValueSource - protected static Stream actionsOnSoragesAndThreadsAndFilesizes() { + protected static Stream actionsOnStoragesAndThreadsAndFilesizes() { return Sets.cartesianProduct( getStorageDescriptors(), THREAD_COUNT, diff --git a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java index c3e99f6da..732c5bb1f 100644 --- a/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java +++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java @@ -37,10 +37,10 @@ public Optional flushChunkSize(AbsoluteLocation location) { private String getBucketNameFromLocation(AbsoluteLocation location) { // example location: s3://datasafe-test1/073047da-dd68-4f70-b9bf-5759d7e30c85/users/user-8/private/files/ // s3://datasafe-test1/073047da-dd68-4f70-b9bf-5759d7e30c85/profiles/private/user-3/ - Pattern userPattern = Pattern.compile(".+/user-(\\d+)/.+"); + Pattern userPattern = Pattern.compile(".+/user-(\\d+).*"); Matcher matcher = userPattern.matcher(location.location().asString()); matcher.matches(); - int userNum = Integer.valueOf(matcher.group(1)); + int userNum = Integer.parseInt(matcher.group(1)); return amazonBuckets.get(userNum % amazonBuckets.size()); } } diff --git a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java index ead7af66a..ee16a859f 100644 --- a/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java +++ b/datasafe-test-storages/src/main/java/de/adorsys/datasafe/teststorage/WithStorageProvider.java @@ -62,7 +62,6 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String minioAccessKeyID = "admin"; private static String minioSecretAccessKey = "password"; private static String minioRegion = "eu-central-1"; - private static String minioBucketName = "home"; private static String minioUrl = "http://localhost"; private static String minioMappedUrl; @@ -70,18 +69,19 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static String cephAccessKeyID = "admin"; private static String cephSecretAccessKey = "password"; private static String cephRegion = "eu-central-1"; - private static String cephBucketName = "home"; private static String cephUrl = "http://0.0.0.0"; // not localhost! private static String cephMappedUrl; private static String amazonAccessKeyID = readPropOrEnv("AWS_ACCESS_KEY"); private static String amazonSecretAccessKey = readPropOrEnv("AWS_SECRET_KEY"); private static String amazonRegion = readPropOrEnv("AWS_REGION", "eu-central-1"); - protected static List amazonBuckets = - Arrays.asList(readPropOrEnv("AWS_BUCKET", "adorsys-docusafe").split(",")); private static String amazonUrl = readPropOrEnv("AWS_URL"); private static String amazonMappedUrl; + protected static List buckets = + Arrays.asList(readPropOrEnv("AWS_BUCKET", "adorsys-docusafe").split(",")); + protected static String primaryBucket = buckets.get(0); + private static GenericContainer minioContainer; private static GenericContainer cephContainer; @@ -92,7 +92,7 @@ public abstract class WithStorageProvider extends BaseMockitoTest { private static Supplier cephStorage; private static Supplier minioStorage; - private static Supplier amazonSotrage; + private static Supplier amazonStorage; @BeforeAll static void init(@TempDir Path tempDir) { @@ -111,7 +111,7 @@ static void init(@TempDir Path tempDir) { return null; }); - amazonSotrage = Suppliers.memoize(() -> { + amazonStorage = Suppliers.memoize(() -> { initS3(); return null; }); @@ -126,15 +126,15 @@ void cleanup() { } if (null != minio) { - removeObjectFromS3(minio, minioBucketName, bucketPath); + buckets.forEach(it -> removeObjectFromS3(minio, it, bucketPath)); } if (null != ceph) { - removeObjectFromS3(ceph, cephBucketName, bucketPath); + buckets.forEach(it -> removeObjectFromS3(ceph, it, bucketPath)); } if (null != amazonS3) { - amazonBuckets.forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath)); + buckets.forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath)); } } @@ -208,13 +208,13 @@ protected static StorageDescriptor minio() { StorageDescriptorName.MINIO, () -> { minioStorage.get(); - return new S3StorageService(minio, minioBucketName, EXECUTOR_SERVICE); + return new S3StorageService(minio, primaryBucket, EXECUTOR_SERVICE); }, - new Uri("s3://" + minioBucketName + "/" + bucketPath + "/"), + new Uri("s3://" + primaryBucket + "/" + bucketPath + "/"), minioAccessKeyID, minioSecretAccessKey, minioRegion, - minioBucketName + "/" + bucketPath + primaryBucket + "/" + bucketPath ); } @@ -226,13 +226,13 @@ protected static StorageDescriptor cephVersioned() { StorageDescriptorName.CEPH, () -> { cephStorage.get(); - return new S3StorageService(ceph, cephBucketName, EXECUTOR_SERVICE); + return new S3StorageService(ceph, primaryBucket, EXECUTOR_SERVICE); }, - new Uri("s3://" + cephBucketName + "/" + bucketPath + "/"), + new Uri("s3://" + primaryBucket + "/" + bucketPath + "/"), cephAccessKeyID, cephSecretAccessKey, cephRegion, - cephBucketName + "/" + bucketPath + primaryBucket + "/" + bucketPath ); } @@ -241,13 +241,15 @@ private static boolean skipCeph() { if (value == null) { return false; } - if (value.equalsIgnoreCase("false")) { - return false; - } - return true; + + return !value.equalsIgnoreCase("false"); } protected static Function storageServiceByBucket() { + if (null == amazonS3) { + return bucketName -> new S3StorageService(minio, bucketName, EXECUTOR_SERVICE); + } + return bucketName -> new S3StorageService(amazonS3, bucketName, EXECUTOR_SERVICE); } @@ -259,14 +261,14 @@ protected static StorageDescriptor s3() { return new StorageDescriptor( StorageDescriptorName.AMAZON, () -> { - amazonSotrage.get(); - return new S3StorageService(amazonS3, amazonBuckets.get(0), EXECUTOR_SERVICE); + amazonStorage.get(); + return new S3StorageService(amazonS3, primaryBucket, EXECUTOR_SERVICE); }, - new Uri("s3://" + amazonBuckets.get(0) + "/" + bucketPath + "/"), + new Uri("s3://" + primaryBucket + "/" + bucketPath + "/"), amazonAccessKeyID, amazonSecretAccessKey, amazonRegion, - amazonBuckets.get(0) + "/" + bucketPath + primaryBucket + "/" + bucketPath ); } @@ -290,13 +292,13 @@ private static void initS3() { new BasicAWSCredentials(amazonAccessKeyID, amazonSecretAccessKey)) ); - if (amazonBuckets.size() > 1) { - log.info("Using {} buckets:{}", amazonBuckets.size(), amazonBuckets); + if (buckets.size() > 1) { + log.info("Using {} buckets:{}", buckets.size(), buckets); } if (StringUtils.isNullOrEmpty(amazonUrl)) { amazonS3ClientBuilder = amazonS3ClientBuilder.withRegion(amazonRegion); - amazonMappedUrl = "s3://" + amazonBuckets.get(0) + "/" + bucketPath + "/"; + amazonMappedUrl = "s3://" + primaryBucket + "/" + bucketPath + "/"; } else { amazonS3ClientBuilder = amazonS3ClientBuilder .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP)) @@ -304,7 +306,7 @@ private static void initS3() { new AwsClientBuilder.EndpointConfiguration(amazonUrl, CEPH_REGION) ) .enablePathStyleAccess(); - amazonMappedUrl = "http://" + amazonBuckets.get(0) + "." + amazonUrl; + amazonMappedUrl = "http://" + primaryBucket + "." + amazonUrl; } amazonS3 = amazonS3ClientBuilder.build(); @@ -337,7 +339,7 @@ private static void startMinio() { .build(); - minio.createBucket(minioBucketName); + buckets.forEach(minio::createBucket); } private static void startCeph() { @@ -373,13 +375,13 @@ private static void startCeph() { .enablePathStyleAccess() .build(); - ceph.createBucket(cephBucketName); + ceph.createBucket(buckets.get(0)); // curiously enough CEPH docs are incorrect, looks like they do support version id: // https://github.com/ceph/ceph/blame/bc065cae7857c352ca36d5f06cdb5107cf72ed41/src/rgw/rgw_rest_s3.cc // so for versioned local tests we can use CEPH ceph.setBucketVersioningConfiguration( new SetBucketVersioningConfigurationRequest( - cephBucketName, + primaryBucket, new BucketVersioningConfiguration(BucketVersioningConfiguration.ENABLED) ) ); From 74ac3240f84482fcfb0327fa7956c9cfc25f7ea0 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 16:57:08 +0300 Subject: [PATCH 39/42] DOC-236. Make multibucket test conditional --- .../RandomActionsOnMultiBucketTest.java | 12 +++--------- .../randomactions/framework/BaseRandomActions.java | 5 +++-- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java index a8d905889..460ff43db 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java @@ -7,25 +7,19 @@ import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig; import de.adorsys.datasafe.storage.api.UserBasedDelegatingStorage; import lombok.extern.slf4j.Slf4j; -import org.junit.jupiter.api.condition.DisabledIfSystemProperty; +import org.junit.jupiter.api.condition.EnabledIfSystemProperty; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; -import org.testcontainers.shaded.com.google.common.collect.ImmutableList; -import static de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions.DISABLE_RANDOM_ACTIONS_TEST; +import static de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions.ENABLE_MULTI_BUCKET_TEST; @Slf4j -@DisabledIfSystemProperty(named = DISABLE_RANDOM_ACTIONS_TEST, matches = "true") +@EnabledIfSystemProperty(named = ENABLE_MULTI_BUCKET_TEST, matches = "true") class RandomActionsOnMultiBucketTest extends BaseRandomActions { @ParameterizedTest @MethodSource("actionsOnStoragesAndThreadsAndFilesizes") void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) { - - if (descriptor.getName().equals(StorageDescriptorName.MINIO) && buckets.size() == 1) { - buckets = ImmutableList.of("bucket-one", "bucket-two", "bucket-three"); - } - DefaultDatasafeServices datasafeServices = datasafeServices(descriptor); StatisticService statisticService = new StatisticService(); diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index ca6a41bd0..65d98fff1 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -42,14 +42,15 @@ public abstract class BaseRandomActions extends WithStorageProvider { public static final String DISABLE_RANDOM_ACTIONS_TEST = "DISABLE_RANDOM_ACTIONS_TEST"; + public static final String ENABLE_MULTI_BUCKET_TEST = "ENABLE_MULTI_BUCKET_TEST"; private final Logger log = LoggerFactory.getLogger(getClass()); private static final int KILOBYTE_TO_BYTE = 1024; private static final long TIMEOUT = 30L; - private static String THREADS = readPropOrEnv("THREADS", "2, 4, 8"); - private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100, 1024, 10240"); // in KB + private static String THREADS = readPropOrEnv("THREADS", "2"); + private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100"); // in KB private static final Set THREAD_COUNT = ImmutableSet.copyOf( Stream.of(THREADS.split(",")).map(String::trim) From 327d1f447771ad2e7bcf345329a20ccc8e71047e Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 17:01:16 +0300 Subject: [PATCH 40/42] DOC-236. Re-enable large file sizes --- .../impl/e2e/randomactions/framework/BaseRandomActions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java index 65d98fff1..4e061e37c 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/BaseRandomActions.java @@ -49,8 +49,8 @@ public abstract class BaseRandomActions extends WithStorageProvider { private static final int KILOBYTE_TO_BYTE = 1024; private static final long TIMEOUT = 30L; - private static String THREADS = readPropOrEnv("THREADS", "2"); - private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100"); // in KB + private static String THREADS = readPropOrEnv("THREADS", "2, 4, 8"); + private static String FILE_SIZES = readPropOrEnv("FILE_SIZES", "100, 1024, 10240"); // in KB private static final Set THREAD_COUNT = ImmutableSet.copyOf( Stream.of(THREADS.split(",")).map(String::trim) From 25c8098548a53cfa5beddc78ed8ec154f64da4fc Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Fri, 23 Aug 2019 17:56:46 +0300 Subject: [PATCH 41/42] DOC-236. Added test --- .../CustomizableByteArrayOutputStream.java | 4 +- ...CustomizableByteArrayOutputStreamTest.java | 160 ++++++++++++++++++ 2 files changed, 162 insertions(+), 2 deletions(-) create mode 100644 datasafe-types-api/src/test/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStreamTest.java diff --git a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java index 09b2adbbb..f21d6ef52 100644 --- a/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java +++ b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStream.java @@ -16,8 +16,8 @@ public class CustomizableByteArrayOutputStream extends OutputStream { private final int maxArraySize; private final int initialCapacity; - private byte[] buffer; - private int count; + protected byte[] buffer; + protected int count; /** * @param initialCapacity Initial buffer capacity diff --git a/datasafe-types-api/src/test/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStreamTest.java b/datasafe-types-api/src/test/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStreamTest.java new file mode 100644 index 000000000..b9d5d9134 --- /dev/null +++ b/datasafe-types-api/src/test/java/de/adorsys/datasafe/types/api/utils/CustomizableByteArrayOutputStreamTest.java @@ -0,0 +1,160 @@ +package de.adorsys.datasafe.types.api.utils; + +import de.adorsys.datasafe.types.api.shared.BaseMockitoTest; +import org.junit.jupiter.api.Test; + +import java.util.stream.IntStream; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.*; + +class CustomizableByteArrayOutputStreamTest extends BaseMockitoTest { + + private static final int INITIAL_CAPACITY = 1; + private static final int MAX_SIZE = 10; + private static final double FILL_FACTOR = 0.9; + + private CustomizableByteArrayOutputStream tested = new CustomizableByteArrayOutputStreamTestable( + INITIAL_CAPACITY, MAX_SIZE, FILL_FACTOR + ); + + @Test + void invalidArgs() { + assertThrows(IllegalArgumentException.class, () -> new CustomizableByteArrayOutputStream(-1, 10, 0.5)); + assertThrows(IllegalArgumentException.class, () -> new CustomizableByteArrayOutputStream(1, -10, 0.5)); + assertThrows(IllegalArgumentException.class, () -> new CustomizableByteArrayOutputStream(1, 10, -0.5)); + assertThrows(IllegalArgumentException.class, () -> new CustomizableByteArrayOutputStream(-1, 10, 1.5)); + } + + @Test + void writeSingleByteNoGrow() { + int written = 10; + + tested.write(written); + + assertThat(tested.buffer).hasSize(1); + assertThat(tested.buffer).containsExactly(written); + } + + @Test + void writeSingleByteGrows() { + int written1 = 10; + int written2 = 20; + + tested.write(written1); + tested.write(written2); + + assertThat(tested.buffer).hasSize(2); + assertThat(tested.buffer).containsExactly(written1, written2); + } + + @Test + void writeSingleByteGrowsExponentially() { + int written1 = 10; + int written2 = 20; + int written3 = 20; + + tested.write(written1); + tested.write(written2); + tested.write(written3); + + assertThat(tested.buffer).hasSize(4); + assertThat(tested.count).isEqualTo(3); + assertThat(tested.buffer).startsWith(written1, written2, written3); + } + + @Test + void writeSingleArrayNoGrow() { + byte[] written = {10}; + + tested.write(written, 0, written.length); + + assertThat(tested.buffer).hasSize(1); + assertThat(tested.count).isEqualTo(1); + assertThat(tested.buffer).containsExactly(written); + } + + @Test + void writeSingleArrayGrows() { + byte[] written = {10, 20}; + + tested.write(written, 0, written.length); + + assertThat(tested.buffer).hasSize(2); + assertThat(tested.count).isEqualTo(2); + assertThat(tested.buffer).containsExactly(written); + } + + @Test + void writeSingleArrayMatchesWrittenSizeOnOverflow() { + byte[] written = {10, 20, 30}; + + tested.write(written, 0, written.length); + + assertThat(tested.buffer).hasSize(3); + assertThat(tested.count).isEqualTo(3); + assertThat(tested.buffer).startsWith(written); + } + + @Test + void writeSingleArrayGrowsExponentially() { + byte[] written1 = {10, 20}; + byte[] written2 = {30}; + + tested.write(written1, 0, written1.length); + tested.write(written2, 0, written2.length); + + assertThat(tested.buffer).hasSize(4); + assertThat(tested.count).isEqualTo(3); + assertThat(tested.buffer).startsWith(10, 20, 30); + } + + @Test + void getBufferOrCopyGivesBuffer() { + IntStream.range(0, 9).forEach(it -> tested.write(it)); + + assertThat(tested.getBufferOrCopy()).hasSize(10); + assertThat(tested.getBufferOrCopy()).startsWith(0, 1, 2, 3, 4, 5, 6, 7, 8); + assertThat(tested.getBufferOrCopy()).isEqualTo(tested.buffer); + } + + @Test + void getBufferOrCopyGivesCopy() { + tested.write(10); + tested.write(20); + tested.write(30); + + assertThat(tested.getBufferOrCopy()).hasSize(3); + assertThat(tested.getBufferOrCopy()).containsExactly(10, 20, 30); + assertThat(tested.getBufferOrCopy()).isNotEqualTo(tested.buffer); + } + + @Test + void size() { + tested.write(10); + tested.write(20); + tested.write(30); + + assertThat(tested.size()).isEqualTo(3); + assertThat(tested.buffer.length).isEqualTo(4); + } + + @Test + void reset() { + tested.write(10); + tested.write(20); + + tested.reset(); + + assertThat(tested.count).isEqualTo(0); + assertThat(tested.buffer).hasSize(INITIAL_CAPACITY); + } + + public static class CustomizableByteArrayOutputStreamTestable extends CustomizableByteArrayOutputStream { + + CustomizableByteArrayOutputStreamTestable( + int initialCapacity, int maxArraySize, double fillFactorToCopy) { + super(initialCapacity, maxArraySize, fillFactorToCopy); + } + } +} From f11ef86d501c2e7af3dfd36b227d49e1c7923a02 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Tue, 27 Aug 2019 11:54:02 +0300 Subject: [PATCH 42/42] Prepare release 0.6.0 --- datasafe-business/pom.xml | 2 +- datasafe-directory/datasafe-directory-api/pom.xml | 2 +- datasafe-directory/datasafe-directory-impl/pom.xml | 2 +- datasafe-directory/pom.xml | 2 +- datasafe-encryption/datasafe-encryption-api/pom.xml | 2 +- datasafe-encryption/datasafe-encryption-impl/pom.xml | 2 +- datasafe-encryption/pom.xml | 2 +- datasafe-examples/datasafe-examples-business/pom.xml | 2 +- datasafe-examples/datasafe-examples-customize-dagger/pom.xml | 2 +- datasafe-examples/datasafe-examples-multidfs/pom.xml | 2 +- datasafe-examples/datasafe-examples-versioned-s3/pom.xml | 2 +- datasafe-examples/pom.xml | 2 +- datasafe-inbox/datasafe-inbox-api/pom.xml | 2 +- datasafe-inbox/datasafe-inbox-impl/pom.xml | 2 +- datasafe-inbox/pom.xml | 2 +- .../datasafe-business-tests-random-actions/pom.xml | 2 +- datasafe-long-run-tests/pom.xml | 2 +- datasafe-metainfo/datasafe-metainfo-version-api/pom.xml | 2 +- datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml | 2 +- datasafe-metainfo/pom.xml | 2 +- datasafe-privatestore/datasafe-privatestore-api/pom.xml | 2 +- datasafe-privatestore/datasafe-privatestore-impl/pom.xml | 2 +- datasafe-privatestore/pom.xml | 2 +- datasafe-rest-impl/pom.xml | 4 ++-- datasafe-runtime-delegate/pom.xml | 2 +- datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml | 2 +- datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml | 2 +- .../datasafe-simple-adapter-spring/pom.xml | 2 +- datasafe-simple-adapter/pom.xml | 2 +- datasafe-storage/datasafe-storage-api/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-db/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-fs/pom.xml | 2 +- datasafe-storage/datasafe-storage-impl-s3/pom.xml | 2 +- datasafe-storage/pom.xml | 2 +- datasafe-test-storages/pom.xml | 2 +- datasafe-types-api/pom.xml | 2 +- last-module-codecoverage-check/pom.xml | 2 +- pom.xml | 2 +- 38 files changed, 39 insertions(+), 39 deletions(-) diff --git a/datasafe-business/pom.xml b/datasafe-business/pom.xml index 99e102cb6..feb058ce8 100644 --- a/datasafe-business/pom.xml +++ b/datasafe-business/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-directory/datasafe-directory-api/pom.xml b/datasafe-directory/datasafe-directory-api/pom.xml index 8085215ea..649168f74 100644 --- a/datasafe-directory/datasafe-directory-api/pom.xml +++ b/datasafe-directory/datasafe-directory-api/pom.xml @@ -3,7 +3,7 @@ de.adorsys datasafe-directory - 0.5.1-SNAPSHOT + 0.6.0 datasafe-directory-api diff --git a/datasafe-directory/datasafe-directory-impl/pom.xml b/datasafe-directory/datasafe-directory-impl/pom.xml index a314ecac6..b8fb8849f 100644 --- a/datasafe-directory/datasafe-directory-impl/pom.xml +++ b/datasafe-directory/datasafe-directory-impl/pom.xml @@ -3,7 +3,7 @@ de.adorsys datasafe-directory - 0.5.1-SNAPSHOT + 0.6.0 datasafe-directory-impl diff --git a/datasafe-directory/pom.xml b/datasafe-directory/pom.xml index 98022f8f1..d6d0192f4 100644 --- a/datasafe-directory/pom.xml +++ b/datasafe-directory/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-encryption/datasafe-encryption-api/pom.xml b/datasafe-encryption/datasafe-encryption-api/pom.xml index 9c79996cb..5a2202a2f 100644 --- a/datasafe-encryption/datasafe-encryption-api/pom.xml +++ b/datasafe-encryption/datasafe-encryption-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-encryption - 0.5.1-SNAPSHOT + 0.6.0 datasafe-encryption-api diff --git a/datasafe-encryption/datasafe-encryption-impl/pom.xml b/datasafe-encryption/datasafe-encryption-impl/pom.xml index 4a8655c13..641b4fd08 100644 --- a/datasafe-encryption/datasafe-encryption-impl/pom.xml +++ b/datasafe-encryption/datasafe-encryption-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-encryption - 0.5.1-SNAPSHOT + 0.6.0 datasafe-encryption-impl diff --git a/datasafe-encryption/pom.xml b/datasafe-encryption/pom.xml index 6d3b14c69..58033e869 100644 --- a/datasafe-encryption/pom.xml +++ b/datasafe-encryption/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-examples/datasafe-examples-business/pom.xml b/datasafe-examples/datasafe-examples-business/pom.xml index 748fcf69e..86ed5c009 100644 --- a/datasafe-examples/datasafe-examples-business/pom.xml +++ b/datasafe-examples/datasafe-examples-business/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5.1-SNAPSHOT + 0.6.0 datasafe-examples-business diff --git a/datasafe-examples/datasafe-examples-customize-dagger/pom.xml b/datasafe-examples/datasafe-examples-customize-dagger/pom.xml index 483678eb7..dc9d55a1a 100644 --- a/datasafe-examples/datasafe-examples-customize-dagger/pom.xml +++ b/datasafe-examples/datasafe-examples-customize-dagger/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5.1-SNAPSHOT + 0.6.0 datasafe-examples-customize-dagger diff --git a/datasafe-examples/datasafe-examples-multidfs/pom.xml b/datasafe-examples/datasafe-examples-multidfs/pom.xml index 02448c189..8bb5e90a2 100644 --- a/datasafe-examples/datasafe-examples-multidfs/pom.xml +++ b/datasafe-examples/datasafe-examples-multidfs/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5.1-SNAPSHOT + 0.6.0 datasafe-examples-multidfs diff --git a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml index 92635642e..925e10c88 100644 --- a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml +++ b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-examples - 0.5.1-SNAPSHOT + 0.6.0 datasafe-examples-versioned-s3 diff --git a/datasafe-examples/pom.xml b/datasafe-examples/pom.xml index 4341f3a99..87c0e5da4 100644 --- a/datasafe-examples/pom.xml +++ b/datasafe-examples/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-inbox/datasafe-inbox-api/pom.xml b/datasafe-inbox/datasafe-inbox-api/pom.xml index 7a57ac3f2..5d6f84f9b 100644 --- a/datasafe-inbox/datasafe-inbox-api/pom.xml +++ b/datasafe-inbox/datasafe-inbox-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-inbox - 0.5.1-SNAPSHOT + 0.6.0 datasafe-inbox-api diff --git a/datasafe-inbox/datasafe-inbox-impl/pom.xml b/datasafe-inbox/datasafe-inbox-impl/pom.xml index a74765081..b525310b4 100644 --- a/datasafe-inbox/datasafe-inbox-impl/pom.xml +++ b/datasafe-inbox/datasafe-inbox-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-inbox - 0.5.1-SNAPSHOT + 0.6.0 datasafe-inbox-impl diff --git a/datasafe-inbox/pom.xml b/datasafe-inbox/pom.xml index c0a8feb01..bbc706adb 100644 --- a/datasafe-inbox/pom.xml +++ b/datasafe-inbox/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml index daf2d7d1a..a829f0064 100644 --- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml +++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml @@ -5,7 +5,7 @@ datasafe-long-run-tests de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-long-run-tests/pom.xml b/datasafe-long-run-tests/pom.xml index a36758d00..ce08722a1 100644 --- a/datasafe-long-run-tests/pom.xml +++ b/datasafe-long-run-tests/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml b/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml index 52c217d0e..095b222ea 100644 --- a/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml +++ b/datasafe-metainfo/datasafe-metainfo-version-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-metainfo - 0.5.1-SNAPSHOT + 0.6.0 datasafe-metainfo-version-api diff --git a/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml b/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml index cc9792240..b69836b0c 100644 --- a/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml +++ b/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-metainfo - 0.5.1-SNAPSHOT + 0.6.0 datasafe-metainfo-version-impl diff --git a/datasafe-metainfo/pom.xml b/datasafe-metainfo/pom.xml index 72424b08d..a56fe5c65 100644 --- a/datasafe-metainfo/pom.xml +++ b/datasafe-metainfo/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-privatestore/datasafe-privatestore-api/pom.xml b/datasafe-privatestore/datasafe-privatestore-api/pom.xml index 6348d7f2a..a784f76cd 100644 --- a/datasafe-privatestore/datasafe-privatestore-api/pom.xml +++ b/datasafe-privatestore/datasafe-privatestore-api/pom.xml @@ -5,7 +5,7 @@ datasafe-privatestore de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-privatestore/datasafe-privatestore-impl/pom.xml b/datasafe-privatestore/datasafe-privatestore-impl/pom.xml index 892b32a20..8f60bfe7f 100644 --- a/datasafe-privatestore/datasafe-privatestore-impl/pom.xml +++ b/datasafe-privatestore/datasafe-privatestore-impl/pom.xml @@ -5,7 +5,7 @@ datasafe-privatestore de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-privatestore/pom.xml b/datasafe-privatestore/pom.xml index 4fd29eddf..59bc22671 100644 --- a/datasafe-privatestore/pom.xml +++ b/datasafe-privatestore/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-rest-impl/pom.xml b/datasafe-rest-impl/pom.xml index 7c3706784..ede05431d 100644 --- a/datasafe-rest-impl/pom.xml +++ b/datasafe-rest-impl/pom.xml @@ -5,11 +5,11 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 datasafe-rest-impl - 0.5.1-SNAPSHOT + 0.6.0 datasafe-rest-impl Spring Boot DataSafe Application diff --git a/datasafe-runtime-delegate/pom.xml b/datasafe-runtime-delegate/pom.xml index 900733f4b..4afd1cd42 100644 --- a/datasafe-runtime-delegate/pom.xml +++ b/datasafe-runtime-delegate/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe - 0.5.1-SNAPSHOT + 0.6.0 datasafe-runtime-delegate diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml index 8435d7c3f..b19a0c995 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-api/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml index f1bae7c9a..1b685d6a3 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml index ec67b7e3e..0db9fb15c 100644 --- a/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml +++ b/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml @@ -5,7 +5,7 @@ datasafe-simple-adapter de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-simple-adapter/pom.xml b/datasafe-simple-adapter/pom.xml index ca4f0b012..29199a774 100644 --- a/datasafe-simple-adapter/pom.xml +++ b/datasafe-simple-adapter/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-storage/datasafe-storage-api/pom.xml b/datasafe-storage/datasafe-storage-api/pom.xml index bf852c6d7..5fdbbb073 100644 --- a/datasafe-storage/datasafe-storage-api/pom.xml +++ b/datasafe-storage/datasafe-storage-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe-storage - 0.5.1-SNAPSHOT + 0.6.0 datasafe-storage-api diff --git a/datasafe-storage/datasafe-storage-impl-db/pom.xml b/datasafe-storage/datasafe-storage-impl-db/pom.xml index b483bc2c1..69a20d823 100644 --- a/datasafe-storage/datasafe-storage-impl-db/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-db/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-storage/datasafe-storage-impl-fs/pom.xml b/datasafe-storage/datasafe-storage-impl-fs/pom.xml index 51403ac91..cbdc51e3a 100644 --- a/datasafe-storage/datasafe-storage-impl-fs/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-fs/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-storage/datasafe-storage-impl-s3/pom.xml b/datasafe-storage/datasafe-storage-impl-s3/pom.xml index 7836645dc..4d926de2e 100644 --- a/datasafe-storage/datasafe-storage-impl-s3/pom.xml +++ b/datasafe-storage/datasafe-storage-impl-s3/pom.xml @@ -5,7 +5,7 @@ datasafe-storage de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-storage/pom.xml b/datasafe-storage/pom.xml index ff1e3d31a..9e1d9cea8 100644 --- a/datasafe-storage/pom.xml +++ b/datasafe-storage/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-test-storages/pom.xml b/datasafe-test-storages/pom.xml index ba18f93b0..16240a24e 100644 --- a/datasafe-test-storages/pom.xml +++ b/datasafe-test-storages/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/datasafe-types-api/pom.xml b/datasafe-types-api/pom.xml index 7c4228f89..741f9f4d7 100644 --- a/datasafe-types-api/pom.xml +++ b/datasafe-types-api/pom.xml @@ -5,7 +5,7 @@ de.adorsys datasafe - 0.5.1-SNAPSHOT + 0.6.0 datasafe-types-api diff --git a/last-module-codecoverage-check/pom.xml b/last-module-codecoverage-check/pom.xml index e009e4956..4656a91e4 100644 --- a/last-module-codecoverage-check/pom.xml +++ b/last-module-codecoverage-check/pom.xml @@ -5,7 +5,7 @@ datasafe de.adorsys - 0.5.1-SNAPSHOT + 0.6.0 4.0.0 diff --git a/pom.xml b/pom.xml index 4ea80be11..77b766fe5 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ de.adorsys datasafe - 0.5.1-SNAPSHOT + 0.6.0 datasafe Datasafe https://github.com/adorsys/datasafe