diff --git a/README.md b/README.md
index 998351cd4..cb519ef7c 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,61 @@ 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
+```
+
+## Quick demo
+
+[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)
provides these key services:
diff --git a/datasafe-business/pom.xml b/datasafe-business/pom.xml
index 031a25059..feb058ce8 100644
--- a/datasafe-business/pom.xml
+++ b/datasafe-business/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 0.6.0
4.0.0
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-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..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
@@ -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,8 @@ 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, 5);
private static Map minios = new HashMap<>();
private static Map endpointsByHost = new HashMap<>();
diff --git a/datasafe-directory/datasafe-directory-api/pom.xml b/datasafe-directory/datasafe-directory-api/pom.xml
index cf93993ee..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
+ 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 9e20b8d53..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
+ 0.6.0
datasafe-directory-impl
diff --git a/datasafe-directory/pom.xml b/datasafe-directory/pom.xml
index c85a8fe11..d6d0192f4 100644
--- a/datasafe-directory/pom.xml
+++ b/datasafe-directory/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 3132dde9b..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
+ 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 aba4ad810..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
+ 0.6.0
datasafe-encryption-impl
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
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;
}
}
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..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
@@ -11,14 +11,17 @@
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.IOException;
import java.io.OutputStream;
+import java.util.Iterator;
import java.util.List;
import java.util.Map;
+import java.util.Optional;
import java.util.stream.Collectors;
/**
@@ -40,11 +43,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 +126,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 {
@@ -137,9 +148,96 @@ public void write(byte[] bytes, int off, int len) throws IOException {
@SneakyThrows
public void close() {
super.close();
- for (OutputStream destination : destinations) {
+ Iterator dest = destinations.iterator();
+ while (dest.hasNext()) {
+ dest.next().close();
+ dest.remove();
+ }
+ }
+ }
+
+ /**
+ * 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 CustomizableByteArrayOutputStream os;
+
+ private ChunkableFanOutStream(List destinations, int chunkSize) {
+ super(destinations);
+
+ this.chunkSize = chunkSize;
+ this.os = new CustomizableByteArrayOutputStream(32, Integer.MAX_VALUE - 1, 0.5);
+ }
+
+ @Override
+ public void write(int b) throws IOException {
+ if (!needsFlush(1)) {
+ os.write(b);
+ return;
+ }
+
+ os.write(b);
+ doFlush();
+ }
+
+ @Override
+ public void write(byte[] bytes, int off, int len) throws IOException {
+ if (!needsFlush(len)) {
+ os.write(bytes, off, len);
+ return;
+ }
+
+ os.write(bytes, off, len);
+ doFlush();
+ }
+
+ @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.getBufferOrCopy();
+ int size = os.size();
+
+ Iterator dest = destinations.iterator();
+ while (dest.hasNext()) {
+ OutputStream destination = dest.next();
+ destination.write(tailChunk, 0, size);
destination.close();
+ dest.remove();
+ }
+ }
+
+ private void doFlush() throws IOException {
+ byte[] bytes = os.getBufferOrCopy();
+ int size = os.size();
+
+ // write only in chunks of declared size
+ int chunksToWrite = size / 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 < size) {
+ os.write(bytes, written, size - written);
}
}
+
+ private boolean needsFlush(int addedBytes) {
+ return os.size() + addedBytes > chunkSize;
+ }
}
}
diff --git a/datasafe-encryption/pom.xml b/datasafe-encryption/pom.xml
index 2e6eadb36..58033e869 100644
--- a/datasafe-encryption/pom.xml
+++ b/datasafe-encryption/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 e3242efcf..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
+ 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 dab3c79cb..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
+ 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 4a6e4f1f9..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
+ 0.6.0
datasafe-examples-multidfs
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..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
@@ -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,8 @@
@Slf4j
class MultiDfsWithCredentialsExampleTest {
- private static final ExecutorService EXECUTOR = Executors.newFixedThreadPool(4);
+ private static final ExecutorService EXECUTOR = ExecutorServiceUtil
+ .submitterExecutesOnStarvationExecutingService(4, 4);
private static Map minios = new EnumMap<>(MinioContainerId.class);
private static AmazonS3 directoryClient = null;
diff --git a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml
index dfdfc5791..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
+ 0.6.0
datasafe-examples-versioned-s3
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-examples/pom.xml b/datasafe-examples/pom.xml
index 181939226..87c0e5da4 100644
--- a/datasafe-examples/pom.xml
+++ b/datasafe-examples/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 d43d093d7..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
+ 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 6f29c7f2b..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
+ 0.6.0
datasafe-inbox-impl
diff --git a/datasafe-inbox/pom.xml b/datasafe-inbox/pom.xml
index 6b87b3780..bbc706adb 100644
--- a/datasafe-inbox/pom.xml
+++ b/datasafe-inbox/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 f3bb74a5b..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,12 +5,16 @@
datasafe-long-run-tests
de.adorsys
- 0.5
+ 0.6.0
4.0.0
datasafe-business-tests-random-actions
+
+ 2.22.2
+
+
de.adorsys
@@ -176,6 +180,16 @@
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ ${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/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..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,15 +25,15 @@
class RandomActionsOnDatasafeTest extends BaseRandomActions {
@ParameterizedTest
- @MethodSource("actionsOnSoragesAndThreadsAndFilesizes")
- void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) {
+ @MethodSource("actionsOnStoragesAndThreadsAndFilesizes")
+ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInKb) {
DefaultDatasafeServices datasafeServices = datasafeServices(descriptor);
StatisticService statisticService = new StatisticService();
executeTest(
- smallFixture(),
+ getFixture(),
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/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..460ff43db
--- /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,48 @@
+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.EnabledIfSystemProperty;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.MethodSource;
+
+import static de.adorsys.datasafe.business.impl.e2e.randomactions.framework.BaseRandomActions.ENABLE_MULTI_BUCKET_TEST;
+
+@Slf4j
+@EnabledIfSystemProperty(named = ENABLE_MULTI_BUCKET_TEST, matches = "true")
+class RandomActionsOnMultiBucketTest extends BaseRandomActions {
+
+ @ParameterizedTest
+ @MethodSource("actionsOnStoragesAndThreadsAndFilesizes")
+ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) {
+ DefaultDatasafeServices datasafeServices = datasafeServices(descriptor);
+ StatisticService statisticService = new StatisticService();
+
+ executeTest(
+ getFixture(),
+ 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(), 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 4f05c7ae8..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,15 +44,15 @@
class RandomActionsOnSimpleDatasafeAdapterTest extends BaseRandomActions {
@ParameterizedTest
- @MethodSource("actionsOnSoragesAndThreadsAndFilesizes")
- void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCount, int filesizeInMb) {
+ @MethodSource("actionsOnStoragesAndThreadsAndFilesizes")
+ 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..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
@@ -42,14 +42,30 @@
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 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 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)
+ .mapToInt(Integer::parseInt).boxed().collect(Collectors.toList())
+ );
+
+ private static final Set FILE_SIZE_K_BYTES = ImmutableSet.copyOf(
+ Stream.of(FILE_SIZES.split(",")).map(String::trim)
+ .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() {
@@ -58,12 +74,16 @@ void prepare() {
System.setProperty("SECURE_SENSITIVE", "on");
}
- protected Fixture smallSimpleDocusafeAdapterFixture() {
- return fixture("fixture/fixture_simple_datasafe_200_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 smallFixture() {
- return fixture("fixture/fixture_200_ops.json");
+ protected Fixture smallSimpleDocusafeAdapterFixture() {
+ return fixture("fixture/fixture_simple_datasafe_200_ops.json");
}
@SneakyThrows
@@ -76,18 +96,34 @@ protected Fixture fixture(String path) {
}
@ValueSource
- protected static Stream actionsOnSoragesAndThreadsAndFilesizes() {
+ protected static Stream actionsOnStoragesAndThreadsAndFilesizes() {
return Sets.cartesianProduct(
- Collections.singleton(minio()),
- THREAD_COUNT,
- FILE_SIZE_M_BYTES
+ 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,
- int filesizeInMb,
+ int filesizeInKb,
int threads,
ProfileRegistrationService profileRegistrationService,
PrivateSpaceService privateSpaceService,
@@ -96,7 +132,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 +149,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..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
@@ -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);
+ try (FileOutputStream os = new FileOutputStream(path)) {
+ os.write(new GsonBuilder().setPrettyPrinting().create().toJson(fixture).getBytes());
+ }
}
/**
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
diff --git a/datasafe-long-run-tests/pom.xml b/datasafe-long-run-tests/pom.xml
index c91851153..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
+ 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 928de1be6..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
+ 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 d749fc0e0..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
+ 0.6.0
datasafe-metainfo-version-impl
diff --git a/datasafe-metainfo/pom.xml b/datasafe-metainfo/pom.xml
index fbbe5e146..a56fe5c65 100644
--- a/datasafe-metainfo/pom.xml
+++ b/datasafe-metainfo/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 745ea7d39..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
+ 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 855c60cfa..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
+ 0.6.0
4.0.0
diff --git a/datasafe-privatestore/pom.xml b/datasafe-privatestore/pom.xml
index 1bd11e4d7..59bc22671 100644
--- a/datasafe-privatestore/pom.xml
+++ b/datasafe-privatestore/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 0.6.0
4.0.0
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/DEMO.md b/datasafe-rest-impl/DEMO.md
new file mode 100644
index 000000000..9c6cf7dfd
--- /dev/null
+++ b/datasafe-rest-impl/DEMO.md
@@ -0,0 +1,63 @@
+# 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 datasafe-rest-test:latest
+```
+
+### 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)
+
+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.
diff --git a/datasafe-rest-impl/pom.xml b/datasafe-rest-impl/pom.xml
index 0aa96dd9f..ede05431d 100644
--- a/datasafe-rest-impl/pom.xml
+++ b/datasafe-rest-impl/pom.xml
@@ -5,11 +5,11 @@
datasafe
de.adorsys
- 0.5
+ 0.6.0
datasafe-rest-impl
- 0.5
+ 0.6.0
datasafe-rest-impl
Spring Boot DataSafe Application
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..adcb2f6c6 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;
/**
@@ -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,20 +128,10 @@ 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) {
- ExecutorService executorService = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors());
+ ExecutorService executorService = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService();
S3StorageService basicStorage = new S3StorageService(
s3,
properties.getBucketName(),
@@ -163,16 +160,29 @@ 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(),
- Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors())
+ ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService()
);
}
@@ -190,7 +200,7 @@ StorageService multiStorageService(DatasafeProperties properties) {
);
S3StorageService s3StorageService = new S3StorageService(s3(properties), properties.getBucketName(),
- Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors())
+ ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService()
);
StorageService multiDfs = new SchemeDelegatingStorage(
@@ -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
diff --git a/datasafe-runtime-delegate/pom.xml b/datasafe-runtime-delegate/pom.xml
index 08c82cf2e..4afd1cd42 100644
--- a/datasafe-runtime-delegate/pom.xml
+++ b/datasafe-runtime-delegate/pom.xml
@@ -5,7 +5,7 @@
de.adorsys
datasafe
- 0.5
+ 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 82ee830b5..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
+ 0.6.0
4.0.0
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/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-impl/pom.xml
index 2c215dd59..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
+ 0.6.0
4.0.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 caad0037c..0875b7c9a 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
@@ -28,6 +28,7 @@
import de.adorsys.datasafe.simple.adapter.impl.profile.DFSRelativeProfileRetrievalServiceImpl;
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;
@@ -47,7 +48,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
@@ -144,7 +144,11 @@ public SimpleDatasafeServiceImpl(DFSCredentials dfsCredentials) {
storageService = new S3StorageService(
amazons3,
amazonS3DFSCredentials.getContainer(),
- Executors.newFixedThreadPool(amazonS3DFSCredentials.getThreadPoolSize())
+ ExecutorServiceUtil
+ .submitterExecutesOnStarvationExecutingService(
+ amazonS3DFSCredentials.getThreadPoolSize(),
+ amazonS3DFSCredentials.getQueueSize()
+ )
);
this.systemRoot = URI.create(S3_PREFIX + amazonS3DFSCredentials.getRootBucket());
customlyBuiltDatasafeServices = DaggerDefaultDatasafeServices.builder()
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;
}
diff --git a/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml b/datasafe-simple-adapter/datasafe-simple-adapter-spring/pom.xml
index 89451d41f..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
+ 0.6.0
4.0.0
diff --git a/datasafe-simple-adapter/pom.xml b/datasafe-simple-adapter/pom.xml
index 15d6c1134..29199a774 100644
--- a/datasafe-simple-adapter/pom.xml
+++ b/datasafe-simple-adapter/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 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 59a56180f..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
+ 0.6.0
datasafe-storage-api
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
new file mode 100644
index 000000000..732c5bb1f
--- /dev/null
+++ b/datasafe-storage/datasafe-storage-api/src/main/java/de/adorsys/datasafe/storage/api/UserBasedDelegatingStorage.java
@@ -0,0 +1,46 @@
+package de.adorsys.datasafe.storage.api;
+
+import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
+
+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 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);
+ 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) {
+ // 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.parseInt(matcher.group(1));
+ return amazonBuckets.get(userNum % amazonBuckets.size());
+ }
+}
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-db/pom.xml b/datasafe-storage/datasafe-storage-impl-db/pom.xml
index 39ba789df..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
+ 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 159deb2d4..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
+ 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 b92929360..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
+ 0.6.0
4.0.0
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..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
@@ -22,28 +22,18 @@
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.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.security.MessageDigest;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CompletionService;
@@ -65,7 +55,7 @@ public class MultipartUploadS3StorageOutputStream extends OutputStream {
private final CompletionService completionService;
- private ByteArrayOutputStream currentOutputStream = new ByteArrayOutputStream();
+ private CustomizableByteArrayOutputStream currentOutputStream = newOutputStream();
private InitiateMultipartUploadResult multiPartUploadResult;
@@ -87,14 +77,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 +119,18 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() {
}
initiateMultiPartIfNeeded();
+
+ byte[] content = currentOutputStream.getBufferOrCopy();
+ 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 +138,8 @@ private void initiateMultipartRequestAndCommitPartIfNeeded() {
.lastChunk(false)
.build()
));
+
++partCounter;
- currentOutputStream.reset();
}
private boolean isMultiPartUpload() {
@@ -153,25 +149,21 @@ 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.getBufferOrCopy();
- byte[] content = currentOutputStream.toByteArray();
-
- MessageDigest messageDigest = MessageDigest.getInstance("MD5");
- String md5Digest = BinaryUtils.toBase64(messageDigest.digest(content));
- objectMetadata.setContentMD5(md5Digest);
+ // Release the memory
+ currentOutputStream = null;
PutObjectResult upload = amazonS3.putObject(
bucketName,
objectName,
- new ByteArrayInputStream(content),
+ new ByteArrayInputStream(content, 0, size),
objectMetadata);
notifyCommittedVersionIfPresent(upload.getVersionId());
- // Release the memory
- currentOutputStream = null;
-
log.debug("Finished simple upload");
}
@@ -215,11 +207,16 @@ private void sendLastChunkOfMultipartIfNeeded() {
return;
}
+ byte[] content = currentOutputStream.getBufferOrCopy();
+ 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())
@@ -271,5 +268,8 @@ private List getMultiPartsUploadResults() throws ExecutionException, I
return result;
}
+ private CustomizableByteArrayOutputStream newOutputStream() {
+ return new CustomizableByteArrayOutputStream(32, BUFFER_SIZE, 0.5);
+ }
}
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()));
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
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-storage/pom.xml b/datasafe-storage/pom.xml
index cc6b33563..9e1d9cea8 100644
--- a/datasafe-storage/pom.xml
+++ b/datasafe-storage/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 0.6.0
4.0.0
diff --git a/datasafe-test-storages/pom.xml b/datasafe-test-storages/pom.xml
index 491e40f9f..16240a24e 100644
--- a/datasafe-test-storages/pom.xml
+++ b/datasafe-test-storages/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.5
+ 0.6.0
4.0.0
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..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
@@ -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;
@@ -14,6 +17,7 @@
import de.adorsys.datasafe.storage.impl.s3.S3StorageService;
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;
@@ -30,10 +34,12 @@
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;
-import java.util.concurrent.Executors;
+import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Stream;
@@ -45,14 +51,17 @@
@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();
+ private static String bucketPath = UUID.randomUUID().toString();
+
+ private static final ExecutorService EXECUTOR_SERVICE = "true".equals(readPropOrEnv("USE_EXECUTOR_POOL")) ?
+ ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService() :
+ ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 4);
- private static final ExecutorService EXECUTOR_SERVICE = Executors.newFixedThreadPool(5);
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;
@@ -60,16 +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");
- private static String amazonBucket = readPropOrEnv("AWS_BUCKET", "adorsys-docusafe");
+ 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;
@@ -80,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) {
@@ -99,7 +111,7 @@ static void init(@TempDir Path tempDir) {
return null;
});
- amazonSotrage = Suppliers.memoize(() -> {
+ amazonStorage = Suppliers.memoize(() -> {
initS3();
return null;
});
@@ -114,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) {
- removeObjectFromS3(amazonS3, amazonBucket, bucketPath);
+ buckets.forEach(it -> removeObjectFromS3(amazonS3, it, bucketPath));
}
}
@@ -196,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
);
}
@@ -214,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
);
}
@@ -229,10 +241,16 @@ private static boolean skipCeph() {
if (value == null) {
return false;
}
- if (value.equalsIgnoreCase("false")) {
- return false;
+
+ return !value.equalsIgnoreCase("false");
+ }
+
+ protected static Function storageServiceByBucket() {
+ if (null == amazonS3) {
+ return bucketName -> new S3StorageService(minio, bucketName, EXECUTOR_SERVICE);
}
- return true;
+
+ return bucketName -> new S3StorageService(amazonS3, bucketName, EXECUTOR_SERVICE);
}
protected static StorageDescriptor s3() {
@@ -243,14 +261,14 @@ protected static StorageDescriptor s3() {
return new StorageDescriptor(
StorageDescriptorName.AMAZON,
() -> {
- amazonSotrage.get();
- return new S3StorageService(amazonS3, amazonBucket, EXECUTOR_SERVICE);
+ amazonStorage.get();
+ return new S3StorageService(amazonS3, primaryBucket, EXECUTOR_SERVICE);
},
- new Uri("s3://" + amazonBucket + "/" + bucketPath + "/"),
+ new Uri("s3://" + primaryBucket + "/" + bucketPath + "/"),
amazonAccessKeyID,
amazonSecretAccessKey,
amazonRegion,
- amazonBucket + "/" + bucketPath
+ primaryBucket + "/" + bucketPath
);
}
@@ -269,15 +287,30 @@ 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 (buckets.size() > 1) {
+ log.info("Using {} buckets:{}", buckets.size(), buckets);
+ }
+
+ if (StringUtils.isNullOrEmpty(amazonUrl)) {
+ amazonS3ClientBuilder = amazonS3ClientBuilder.withRegion(amazonRegion);
+ amazonMappedUrl = "s3://" + primaryBucket + "/" + bucketPath + "/";
+ } else {
+ amazonS3ClientBuilder = amazonS3ClientBuilder
+ .withClientConfiguration(new ClientConfiguration().withProtocol(Protocol.HTTP))
+ .withEndpointConfiguration(
+ new AwsClientBuilder.EndpointConfiguration(amazonUrl, CEPH_REGION)
+ )
+ .enablePathStyleAccess();
+ amazonMappedUrl = "http://" + primaryBucket + "." + amazonUrl;
+ }
+ amazonS3 = amazonS3ClientBuilder.build();
- amazonMappedUrl = "s3://" + amazonBucket + "/" + bucketPath + "/";
- log.info("Amazon napped URL:" + amazonMappedUrl);
+ log.info("Amazon mapped URL:" + amazonMappedUrl);
}
private static void startMinio() {
@@ -306,7 +339,7 @@ private static void startMinio() {
.build();
- minio.createBucket(minioBucketName);
+ buckets.forEach(minio::createBucket);
}
private static void startCeph() {
@@ -342,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)
)
);
@@ -356,17 +389,19 @@ 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
*/
- 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;
}
/**
* 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
*/
@@ -388,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);
}
}
}
diff --git a/datasafe-types-api/pom.xml b/datasafe-types-api/pom.xml
index 7d2865fad..741f9f4d7 100644
--- a/datasafe-types-api/pom.xml
+++ b/datasafe-types-api/pom.xml
@@ -5,7 +5,7 @@
de.adorsys
datasafe
- 0.5
+ 0.6.0
datasafe-types-api
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..f21d6ef52
--- /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;
+
+ protected byte[] buffer;
+ protected 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);
+ }
+}
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..ec1f92134
--- /dev/null
+++ b/datasafe-types-api/src/main/java/de/adorsys/datasafe/types/api/utils/ExecutorServiceUtil.java
@@ -0,0 +1,36 @@
+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, int queueSize) {
+ return new ThreadPoolExecutor(poolSize, poolSize,
+ 0L, TimeUnit.MILLISECONDS,
+ new LinkedBlockingQueue<>(queueSize),
+ 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(),
+ Runtime.getRuntime().availableProcessors()
+ );
+ }
+}
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);
+ }
+ }
+}
diff --git a/last-module-codecoverage-check/pom.xml b/last-module-codecoverage-check/pom.xml
index c09391ac3..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
+ 0.6.0
4.0.0
diff --git a/pom.xml b/pom.xml
index 6ec854950..77b766fe5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
de.adorsys
datasafe
- 0.5
+ 0.6.0
datasafe
Datasafe
https://github.com/adorsys/datasafe