storageKeyStoreOperations) {
+ super(null);
+ this.delegate = new RegexAccessServiceWithStorageCredentialsImpl(storageKeyStoreOperations);
+ }
+ }
+
+ private static S3StorageService getStorageService(String accessKey, String secretKey, String url, String region,
+ String bucket) {
+ AmazonS3ClientBuilder amazonS3ClientBuilder = AmazonS3ClientBuilder.standard()
+ .withCredentials(
+ new AWSStaticCredentialsProvider(
+ new BasicAWSCredentials(
+ accessKey,
+ secretKey))
+ )
+ .enablePathStyleAccess();
+
+ AwsClientBuilder.EndpointConfiguration endpoint = new AwsClientBuilder.EndpointConfiguration(
+ url,
+ region
+ );
+ amazonS3ClientBuilder.withEndpointConfiguration(endpoint);
+
+ if (! url.toLowerCase().startsWith("https")) {
+ log.info("Creating S3 client without https");
+ ClientConfiguration clientConfig = new ClientConfiguration();
+ clientConfig.setProtocol(Protocol.HTTP);
+ clientConfig.disableSocketProxy();
+ amazonS3ClientBuilder.withClientConfiguration(clientConfig);
+ }
+
+ AmazonS3 amazons3 = amazonS3ClientBuilder.build();
+
+ return new S3StorageService(
+ amazons3,
+ bucket,
+ ExecutorServiceUtil
+ .submitterExecutesOnStarvationExecutingService(
+ 5,
+ 5
+ )
+ );
+ }
+}
+
diff --git a/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/dto/Credentials.java b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/dto/Credentials.java
new file mode 100644
index 000000000..18f736861
--- /dev/null
+++ b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/dto/Credentials.java
@@ -0,0 +1,19 @@
+package de.adorsys.datasafe.cli.dto;
+
+import lombok.Data;
+import picocli.CommandLine;
+
+@Data
+public class Credentials {
+
+ @CommandLine.Option(names = {"--username", "-u"}, description = "Username", required = true)
+ private String username;
+
+ @CommandLine.Option(names = {"--password", "-p"}, description = "Users' password", interactive = true,
+ required = true)
+ private String password;
+
+ @CommandLine.Option(names = {"--system-password", "-sp"}, description = "System password", interactive = true,
+ required = true)
+ private String systemPassword;
+}
diff --git a/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/NoOpRandom.java b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/NoOpRandom.java
new file mode 100644
index 000000000..4b6bbbe29
--- /dev/null
+++ b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/NoOpRandom.java
@@ -0,0 +1,13 @@
+package de.adorsys.datasafe.cli.hacks;
+
+import java.security.SecureRandom;
+
+/**
+ * This class substitutes SecureRandom during CLI generation, it should be overridden during runtime.
+ */
+public class NoOpRandom extends SecureRandom {
+
+ public NoOpRandom() {
+ super(null, null);
+ }
+}
diff --git a/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixCryptoRegistrar.java b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixCryptoRegistrar.java
new file mode 100644
index 000000000..55acb12b2
--- /dev/null
+++ b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixCryptoRegistrar.java
@@ -0,0 +1,35 @@
+package de.adorsys.datasafe.cli.hacks.graalfeature;
+
+import com.oracle.svm.core.annotate.AutomaticFeature;
+import de.adorsys.datasafe.cli.hacks.NoOpRandom;
+import lombok.SneakyThrows;
+import org.bouncycastle.crypto.CryptoServicesRegistrar;
+import org.graalvm.nativeimage.hosted.Feature;
+
+import java.lang.reflect.Field;
+import java.lang.reflect.Modifier;
+import java.security.SecureRandom;
+
+/**
+ * Bouncy Castle attempts to access SecureRandom in {@link CryptoServicesRegistrar} class, during CLI
+ * generation. Because it is not allowed to have NativePRNG in image heap this breaks compilation.
+ * We fix this by setting {@code CryptoServicesRegistrar#defaultSecureRandom} to {@link NoOpRandom} that
+ * is simply stub class. Then, in runtime in main() CLI simply sets {@code defaultSecureRandom} to null
+ * before doing any useful work and such trick forces CryptoServicesRegistrar to get correct {@link SecureRandom}
+ * implementation, because when it is null BC initializes the field.
+ */
+@AutomaticFeature
+public class GraalCompileFixCryptoRegistrar implements Feature {
+
+ @Override
+ @SneakyThrows
+ public void afterRegistration(AfterRegistrationAccess access) {
+ Field secureRandom = CryptoServicesRegistrar.class.getDeclaredField("defaultSecureRandom");
+ secureRandom.setAccessible(true);
+ Field modifiersField = Field.class.getDeclaredField("modifiers");
+ modifiersField.setAccessible(true);
+ modifiersField.setInt(secureRandom, secureRandom.getModifiers() & ~Modifier.FINAL);
+
+ secureRandom.set(CryptoServicesRegistrar.class, new NoOpRandom());
+ }
+}
diff --git a/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixNpeOnMissingServiceTypeInKnownProviders.java b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixNpeOnMissingServiceTypeInKnownProviders.java
new file mode 100644
index 000000000..96152628e
--- /dev/null
+++ b/datasafe-cli/src/main/java/de/adorsys/datasafe/cli/hacks/graalfeature/GraalCompileFixNpeOnMissingServiceTypeInKnownProviders.java
@@ -0,0 +1,126 @@
+package de.adorsys.datasafe.cli.hacks.graalfeature;
+
+import com.oracle.svm.core.annotate.AutomaticFeature;
+import lombok.RequiredArgsConstructor;
+import lombok.experimental.Delegate;
+import org.graalvm.nativeimage.hosted.Feature;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Field;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Modifier;
+import java.nio.charset.StandardCharsets;
+import java.security.Provider;
+import java.util.Locale;
+import java.util.Map;
+
+/**
+ * This class fixes NPE exception in Graal-compilator - when it tries to get non-existing engines from
+ * {@link java.security.Provider}
+ *
+ * Additionally can log access to null service types using property PROVIDER_ACCESS_LOGGER,
+ * so you can add necessary fields to extra_engines.hack. (This will break build later, so you will need
+ * to remove this property when you detected all nulls in Provider).
+ *
+ * Override string example:
+ * X509Store=false,null
+ */
+@AutomaticFeature
+public class GraalCompileFixNpeOnMissingServiceTypeInKnownProviders implements Feature {
+
+ private static final String PROVIDER_ACCESS_LOGGER = "PROVIDER_ACCESS_LOGGER";
+
+ @Override
+ public void afterRegistration(AfterRegistrationAccess access) {
+ ClassLoader classloader = Thread.currentThread().getContextClassLoader();
+
+ try (InputStream is = classloader.getResourceAsStream("extra_engines.hack");
+ InputStreamReader streamReader = new InputStreamReader(is, StandardCharsets.UTF_8);
+ BufferedReader reader = new BufferedReader(streamReader)) {
+ reader.lines().forEach(it -> {
+ System.out.println("Overriding " + it);
+ String[] typeAndValue = it.split("=");
+ String[] params = typeAndValue[1].split(",");
+ addEngine(typeAndValue[0], params[0], params[1]);
+ });
+ } catch (IOException ex) {
+ System.out.println("Failed to read resource - extra_engines.hack " + ex.getMessage());
+ ex.printStackTrace();
+ }
+
+ }
+
+ private void addEngine(String name, String sp, String paramNam) {
+ try {
+ addEngineInternal(name, sp, paramNam);
+ } catch (ReflectiveOperationException ex) {
+ System.out.println("Reflective access error " + ex.getMessage());
+ ex.printStackTrace();
+ throw new IllegalStateException("Failed");
+ }
+ }
+
+ private void addEngineInternal(String name, String sp, String paramNam) throws
+ NoSuchFieldException,
+ ClassNotFoundException,
+ NoSuchMethodException,
+ IllegalAccessException,
+ InstantiationException,
+ InvocationTargetException {
+ Field knownEngines = Provider.class.getDeclaredField("knownEngines");
+ knownEngines.setAccessible(true);
+
+ Field modifiersField = Field.class.getDeclaredField("modifiers");
+ modifiersField.setAccessible(true);
+ modifiersField.setInt(knownEngines, knownEngines.getModifiers() & ~Modifier.FINAL);
+
+ Class> engineDescription = Class.forName("java.security.Provider$EngineDescription");
+
+ Constructor> ctor = engineDescription.getDeclaredConstructor(String.class, boolean.class, String.class);
+ ctor.setAccessible(true);
+
+ @SuppressWarnings("unchecked")
+ Map originalEngine = (Map) knownEngines.get(null);
+
+ Map delegate = null != System.getProperty(PROVIDER_ACCESS_LOGGER)
+ ? new EngineDelegate(originalEngine) : originalEngine;
+
+ knownEngines.set(Map.class, delegate);
+
+ Object engineDescInstance = ctor.newInstance(
+ name,
+ Boolean.parseBoolean(sp),
+ "null".equals(paramNam) ? null : paramNam
+ );
+
+ delegate.put(name.toLowerCase(Locale.ENGLISH), engineDescInstance);
+ delegate.put(name, engineDescInstance);
+ }
+
+ @RequiredArgsConstructor
+ private static class EngineDelegate implements Map {
+
+ @Delegate(excludes = Get.class)
+ private final Map delegate;
+
+
+ @Override
+ public Object get(Object key) {
+ Object value = delegate.get(key);
+
+ if (null == value) {
+ System.out.println("Detected access to null value in Provider.knownEngines for type " + key);
+ }
+
+ return value;
+ }
+
+ private interface Get {
+ Object get(Object key);
+ }
+ }
+}
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/GENERATE.md b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/GENERATE.md
new file mode 100644
index 000000000..ea51cb553
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/GENERATE.md
@@ -0,0 +1 @@
+java -agentlib:native-image-agent=config-output-dir=src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli -jar target/datasafe-cli-pkg.jar
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/jni-config.json b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/jni-config.json
new file mode 100644
index 000000000..0d4f101c7
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/jni-config.json
@@ -0,0 +1,2 @@
+[
+]
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/native-image.properties b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/native-image.properties
new file mode 100644
index 000000000..8f7419043
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/native-image.properties
@@ -0,0 +1,7 @@
+Args=\
+ -H:+ReportExceptionStackTraces \
+ -H:+TraceClassInitialization \
+ -H:+ReportUnsupportedElementsAtRuntime \
+ -H:ResourceConfigurationResources=${.}/resource-config.json \
+ -H:ReflectionConfigurationResources=${.}/reflect-config.json \
+ -H:DynamicProxyConfigurationResources=${.}/proxy-config.json
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/proxy-config.json b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/proxy-config.json
new file mode 100644
index 000000000..d7b7b4c87
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/proxy-config.json
@@ -0,0 +1,11 @@
+[
+ [
+ "org.apache.http.conn.ConnectionRequest",
+ "com.amazonaws.http.conn.Wrapped"
+ ],
+ [
+ "org.apache.http.conn.HttpClientConnectionManager",
+ "org.apache.http.pool.ConnPoolControl",
+ "com.amazonaws.http.conn.Wrapped"
+ ]
+]
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/reflect-config.json b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/reflect-config.json
new file mode 100644
index 000000000..80f9109a8
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/reflect-config.json
@@ -0,0 +1,1208 @@
+[
+ {
+ "name": "com.amazonaws.internal.config.Builder",
+ "allDeclaredMethods": true
+ },
+ {
+ "name": "com.amazonaws.internal.config.HostRegexToRegionMappingJsonHelper",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.internal.config.HttpClientConfigJsonHelper",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.internal.config.InternalConfigJsonHelper",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.internal.config.JsonIndex",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.internal.config.SignerConfigJsonHelper",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.jmx.SdkMBeanRegistrySupport",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "com.amazonaws.partitions.model.CredentialScope",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.partitions.model.Endpoint",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.partitions.model.Partition",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.partitions.model.Partitions",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.partitions.model.Region",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.partitions.model.Service",
+ "allDeclaredFields": true,
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "com.amazonaws.services.s3.internal.AWSS3V4Signer",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "com.google.common.util.concurrent.AbstractFuture",
+ "fields": [
+ {
+ "name": "listeners",
+ "allowUnsafeAccess": true
+ },
+ {
+ "name": "value",
+ "allowUnsafeAccess": true
+ },
+ {
+ "name": "waiters",
+ "allowUnsafeAccess": true
+ }
+ ]
+ },
+ {
+ "name": "com.google.common.util.concurrent.AbstractFuture$Waiter",
+ "fields": [
+ {
+ "name": "next",
+ "allowUnsafeAccess": true
+ },
+ {
+ "name": "thread",
+ "allowUnsafeAccess": true
+ }
+ ]
+ },
+ {
+ "name": "com.sun.org.apache.xerces.internal.parsers.SAXParser",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.cli.Cli",
+ "methods": [
+ {
+ "name": "main",
+ "parameterTypes": [
+ "java.lang.String[]"
+ ]
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.global.PathEncryptionId",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.global.Version",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "id",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.directory.api.types.StorageCredentials",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "username",
+ "allowWrite": true
+ },
+ {
+ "name": "password",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.directory.api.types.UserPrivateProfile",
+ "allDeclaredConstructors": true,
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "keystore",
+ "allowWrite": true
+ },
+ {
+ "name": "privateStorage",
+ "allowWrite": true
+ },
+ {
+ "name": "inboxWithFullAccess",
+ "allowWrite": true
+ },
+ {
+ "name": "publishPublicKeysTo",
+ "allowWrite": true
+ },
+ {
+ "name": "associatedResources",
+ "allowWrite": true
+ },
+ {
+ "name": "documentVersionStorage",
+ "allowWrite": true
+ },
+ {
+ "name": "storageCredentialsKeystore",
+ "allowWrite": true
+ },
+ {
+ "name": "appVersion",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.directory.api.types.UserPublicProfile",
+ "allDeclaredConstructors": true,
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "publicKeys",
+ "allowWrite": true
+ },
+ {
+ "name": "inbox",
+ "allowWrite": true
+ },
+ {
+ "name": "appVersion",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.encrypiton.api.types.BaseTypeString",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "value",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.encrypiton.api.types.keystore.KeyID",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "de.adorsys.datasafe.encrypiton.api.types.keystore.PublicKeyIDWithPublicKey",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "keyID",
+ "allowWrite": true
+ },
+ {
+ "name": "publicKey",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.resource.AbsoluteLocation",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "resource",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.resource.BasePrivateResource",
+ "allDeclaredFields": true,
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.resource.BasePublicResource",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.resource.StorageIdentifier",
+ "allDeclaredFields": true,
+ "fields": [
+ {
+ "name": "id",
+ "allowWrite": true
+ }
+ ]
+ },
+ {
+ "name": "de.adorsys.datasafe.types.api.resource.Uri",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "java.util.ArrayList",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "java.lang.String"
+ },
+ {
+ "name": "java.lang.Thread",
+ "methods": [
+ {
+ "name": "getContextClassLoader",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "java.text.DateFormatSymbols",
+ "methods": [
+ {
+ "name": "getInstance",
+ "parameterTypes": [
+ "java.util.Locale"
+ ]
+ }
+ ]
+ },
+ {
+ "name": "java.util.ArrayList",
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "java.util.HashSet",
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "java.util.LinkedHashMap",
+ "allDeclaredMethods": true,
+ "allDeclaredConstructors": true
+ },
+ {
+ "name": "javax.crypto.AEADBadTagException",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": [
+ "java.lang.String"
+ ]
+ }
+ ]
+ },
+ {
+ "name": "javax.crypto.spec.GCMParameterSpec",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": [
+ "int",
+ "byte[]"
+ ]
+ },
+ {
+ "name": "getIV",
+ "parameterTypes": []
+ },
+ {
+ "name": "getTLen",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "javax.xml.bind.DatatypeConverter"
+ },
+ {
+ "name": "org.apache.commons.logging.LogFactory"
+ },
+ {
+ "name": "org.apache.commons.logging.impl.NoOpLog",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": [
+ "java.lang.String"
+ ]
+ }
+ ]
+ },
+ {
+ "name": "org.apache.commons.logging.impl.LogFactoryImpl",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.apache.commons.logging.impl.WeakHashtable",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.DH$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.DSA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.DSTU4145$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.EC$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.ECGOST$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.crypto.util.PBKDF2Config",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.EdEC$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.ElGamal$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.GM$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.GOST$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.IES$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.RSA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.X509$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.asymmetric.rsa.BCRSAPublicKey",
+ "allDeclaredFields": true
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Blake2b$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Blake2s$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.DSTU7564$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.GOST3411$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Keccak$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.MD2$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.MD4$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.MD5$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.RIPEMD128$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.RIPEMD160$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.RIPEMD256$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.RIPEMD320$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA1$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA224$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA256$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA3$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA384$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SHA512$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.SM3$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Skein$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Tiger$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.digest.Whirlpool$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.drbg.DRBG$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.keystore.BC$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.keystore.BCFKS$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.keystore.PKCS12$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.AES$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.ARC4$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.ARIA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Blowfish$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.CAST5$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.CAST6$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Camellia$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.ChaCha$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.DES$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.DESede$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.DSTU7624$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.GOST28147$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.GOST3412_2015$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Grain128$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Grainv1$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.HC128$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.HC256$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.IDEA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Noekeon$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.OpenSSLPBKDF$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF1$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.PBEPBKDF2$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.PBEPKCS12$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Poly1305$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.RC2$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.RC5$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.RC6$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Rijndael$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.SCRYPT$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.SEED$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.SM4$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Salsa20$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Serpent$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Shacal2$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.SipHash$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Skipjack$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.TEA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.TLSKDF$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Threefish$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Twofish$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.VMPC$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.VMPCKSA3$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.XSalsa20$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.XTEA$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "org.bouncycastle.jcajce.provider.symmetric.Zuc$Mappings",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "java.security.AlgorithmParameterGeneratorSpi",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "sun.misc.Unsafe",
+ "allDeclaredFields": true,
+ "methods": [
+ {
+ "name": "allocateInstance",
+ "parameterTypes": [
+ "java.lang.Class"
+ ]
+ }
+ ]
+ },
+ {
+ "name": "java.security.KeyStoreSpi",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "sun.security.provider.SecureRandom",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ },
+ {
+ "name": "sun.security.provider.Sun",
+ "methods": [
+ {
+ "name": "",
+ "parameterTypes": []
+ }
+ ]
+ }
+]
diff --git a/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/resource-config.json b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/resource-config.json
new file mode 100644
index 000000000..d8a326c80
--- /dev/null
+++ b/datasafe-cli/src/main/resources/META-INF/native-image/de.adorsys/datasafe-cli/resource-config.json
@@ -0,0 +1,1471 @@
+{
+ "resources": [
+ {
+ "pattern": "META-INF/MANIFEST.MF"
+ },
+ {
+ "pattern": "com/amazonaws/internal/config/awssdk_config_default.json"
+ },
+ {
+ "pattern": "com/amazonaws/partitions/endpoints.json"
+ },
+ {
+ "pattern": "com/amazonaws/sdk/versionInfo.properties"
+ },
+ {
+ "pattern": "de/adorsys/datasafe/cli/Cli$DataOnS3.class"
+ },
+ {
+ "pattern": "javax/crypto/Cipher.class"
+ },
+ {
+ "pattern": "lib/animal-sniffer-annotations-1.17.jar"
+ },
+ {
+ "pattern": "lib/aws-java-sdk-core-1.11.538.jar"
+ },
+ {
+ "pattern": "lib/aws-java-sdk-kms-1.11.538.jar"
+ },
+ {
+ "pattern": "lib/aws-java-sdk-s3-1.11.538.jar"
+ },
+ {
+ "pattern": "lib/bcpkix-jdk15on-1.64.jar"
+ },
+ {
+ "pattern": "lib/bcprov-jdk15on-1.64.jar"
+ },
+ {
+ "pattern": "lib/checker-qual-2.5.2.jar"
+ },
+ {
+ "pattern": "lib/commons-codec-1.10.jar"
+ },
+ {
+ "pattern": "lib/commons-lang3-3.5.jar"
+ },
+ {
+ "pattern": "lib/commons-logging-1.1.3.jar"
+ },
+ {
+ "pattern": "lib/dagger-2.17.jar"
+ },
+ {
+ "pattern": "lib/datasafe-business.jar"
+ },
+ {
+ "pattern": "lib/datasafe-directory-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-directory-impl.jar"
+ },
+ {
+ "pattern": "lib/datasafe-encryption-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-encryption-impl.jar"
+ },
+ {
+ "pattern": "lib/datasafe-inbox-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-inbox-impl.jar"
+ },
+ {
+ "pattern": "lib/datasafe-metainfo-version-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-metainfo-version-impl.jar"
+ },
+ {
+ "pattern": "lib/datasafe-privatestore-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-privatestore-impl.jar"
+ },
+ {
+ "pattern": "lib/datasafe-storage-api.jar"
+ },
+ {
+ "pattern": "lib/datasafe-storage-impl-fs.jar"
+ },
+ {
+ "pattern": "lib/datasafe-storage-impl-s3.jar"
+ },
+ {
+ "pattern": "lib/datasafe-types-api.jar"
+ },
+ {
+ "pattern": "lib/error_prone_annotations-2.2.0.jar"
+ },
+ {
+ "pattern": "lib/failureaccess-1.0.1.jar"
+ },
+ {
+ "pattern": "lib/gson-2.8.5.jar"
+ },
+ {
+ "pattern": "lib/guava-27.0.1-jre.jar"
+ },
+ {
+ "pattern": "lib/httpclient-4.5.5.jar"
+ },
+ {
+ "pattern": "lib/httpcore-4.4.9.jar"
+ },
+ {
+ "pattern": "lib/ion-java-1.0.2.jar"
+ },
+ {
+ "pattern": "lib/j2objc-annotations-1.1.jar"
+ },
+ {
+ "pattern": "lib/jackson-annotations-2.6.0.jar"
+ },
+ {
+ "pattern": "lib/jackson-core-2.6.7.jar"
+ },
+ {
+ "pattern": "lib/jackson-databind-2.6.7.2.jar"
+ },
+ {
+ "pattern": "lib/jackson-dataformat-cbor-2.6.7.jar"
+ },
+ {
+ "pattern": "lib/javax.inject-1.jar"
+ },
+ {
+ "pattern": "lib/jmespath-java-1.11.538.jar"
+ },
+ {
+ "pattern": "lib/joda-time-2.8.1.jar"
+ },
+ {
+ "pattern": "lib/jsr305-3.0.0.jar"
+ },
+ {
+ "pattern": "lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
+ },
+ {
+ "pattern": "lib/lombok-1.18.6.jar"
+ },
+ {
+ "pattern": "lib/picocli-4.0.3.jar"
+ },
+ {
+ "pattern": "lib/siv-mode-1.3.1.jar"
+ },
+ {
+ "pattern": "lib/slf4j-api-1.7.25.jar"
+ },
+ {
+ "pattern": "lib/slf4j-simple-1.7.25.jar"
+ },
+ {
+ "pattern": "mozilla/public-suffix-list.txt"
+ },
+ {
+ "pattern": "org/apache/http/client/version.properties"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1ApplicationSpecific.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1BitString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Boolean.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Choice.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Encodable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1EncodableVector.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Enumerated.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Exception.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1External.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1GeneralizedTime.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Generator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1InputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Integer.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Null.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Object.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1ObjectIdentifier$OidHandle.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1ObjectIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1OctetString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1OctetStringParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1OutputStream$ImplicitOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1OutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1ParsingException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Primitive.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Sequence$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Sequence.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1SequenceParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1Set.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1SetParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1StreamParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1String.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1TaggedObject.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1TaggedObjectParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ASN1UTCTime.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BEROctetString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BEROctetStringGenerator$BufferedBEROctetStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BEROctetStringGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BEROctetStringParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BEROutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERSequence.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERSequenceGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERSequenceParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERSet.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERTaggedObject.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERTaggedObjectParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/BERTags.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ConstructedOctetStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERApplicationSpecific.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERBMPString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERBitString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERExternal.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERFactory.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERGeneralString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERGeneralizedTime.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERGraphicString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERIA5String.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERNull.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERNumericString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DEROctetString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DEROctetStringParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DEROutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERPrintableString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERSequence.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERSequenceParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERSet.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERSetParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERT61String.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERTaggedObject.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERUTCTime.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERUTF8String.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERUniversalString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERVideotexString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DERVisibleString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLApplicationSpecific.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLBitString.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLExternal.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLFactory.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLSequence.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLSequenceParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLSet.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLSetParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DLTaggedObject.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DateUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/DefiniteLengthInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/InMemoryRepresentable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/IndefiniteLengthInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/LazyEncodedSequence.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/LimitedInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/OIDTokenizer.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/StreamUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/bc/BCObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/bsi/BSIObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/CMSObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/ContentInfoParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/EncryptedContentInfoParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/EnvelopedDataParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/IssuerAndSerialNumber.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/KEKIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/KEKRecipientInfo.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/KeyTransRecipientInfo.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/OtherRevocationInfoFormat.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/RecipientIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cms/RecipientInfo.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/cryptopro/CryptoProObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/eac/EACObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/edec/EdECObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/gm/GMObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/gnu/GNUObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/iana/IANAObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/iso/ISOIECObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/kisa/KISAObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/misc/MiscObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/nist/NISTObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/nsri/NSRIObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ntt/NTTObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/oiw/OIWObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/pkcs/PKCSObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/pkcs/RSAPublicKey.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/pkcs/RSASSAPSSparams.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/rosstandart/RosstandartObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/sec/SECObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/teletrust/TeleTrusTObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/ua/UAObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/RDN.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/X500Name.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/X500NameBuilder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/X500NameStyle.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/style/AbstractX500NameStyle.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x500/style/BCStyle.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/AlgorithmIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/AuthorityKeyIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/BasicConstraints.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/Certificate.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/Extension.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/Extensions.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/ExtensionsGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/KeyUsage.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/SubjectKeyIdentifier.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/SubjectPublicKeyInfo.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/TBSCertificate.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/Time.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/V3TBSCertificateGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/X509Extension.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x509/X509ObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x9/X9ECParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/asn1/x9/X9ObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/CertException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/CertIOException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/CertRuntimeException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/CertUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/X509CRLHolder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/X509CertificateHolder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/X509ExtensionUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/X509v3CertificateBuilder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/CertHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/DefaultCertHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509CertificateConverter$ExCertificateException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509CertificateConverter$ExCertificateParsingException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509CertificateConverter.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509CertificateHolder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509ExtensionUtils$SHA1DigestCalculator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509ExtensionUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/JcaX509v3CertificateBuilder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/NamedCertHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/jcajce/ProviderCertHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cert/selector/X509CertificateHolderSelector.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSAlgorithm.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSContentInfoParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedDataParser.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedDataStreamGenerator$CmsEnvelopedDataOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedDataStreamGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedHelper$CMSEnvelopedSecureReadable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSEnvelopedHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSProcessable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSProcessableInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSReadable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSSecureReadable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSTypedStream$FullReaderStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSTypedStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/CMSUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KEKRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KEKRecipientId.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KEKRecipientInfoGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KEKRecipientInformation.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KeyTransRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KeyTransRecipientId.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KeyTransRecipientInfoGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/KeyTransRecipientInformation.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/NullOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/PasswordRecipient$PRF.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/Recipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/RecipientId.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/RecipientInfoGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/RecipientInformation.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/RecipientInformationStore.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/RecipientOperator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/CMSUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/DefaultJcaJceExtHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/EnvelopedDataHelper$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/EnvelopedDataHelper$JCECallback.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/EnvelopedDataHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JcaJceExtHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceCMSContentEncryptorBuilder$CMSOutputEncryptor.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceCMSContentEncryptorBuilder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKEKEnvelopedRecipient$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKEKEnvelopedRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKEKRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKEKRecipientInfoGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKeyTransEnvelopedRecipient$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKeyTransEnvelopedRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKeyTransRecipient.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/JceKeyTransRecipientInfoGenerator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/cms/jcajce/ProviderJcaJceExtHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/CipherParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/CryptoServicesPermission.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/CryptoServicesRegistrar$Property.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/CryptoServicesRegistrar.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/Digest.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/io/CipherIOException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/io/InvalidCipherTextIOException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/AsymmetricKeyParameter.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DHParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DHValidationParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DSAKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DSAParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DSAPrivateKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DSAPublicKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/DSAValidationParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/ECKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/ECPublicKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/Ed25519PrivateKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/Ed25519PublicKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/RSAKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/params/RSAPrivateCrtKeyParameters.class"
+ },
+ {
+ "pattern": "org/bouncycastle/crypto/prng/SP800SecureRandom.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/CipherInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/CipherOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/DigestUpdatingOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/MacUpdatingOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/OutputStreamFactory.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/io/SignatureUpdatingOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/DH$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/DH.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/DSA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/DSTU4145$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/EC$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/EC.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ECGOST$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/EdEC$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ElGamal$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/GM$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/GOST$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/IES$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/RSA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/RSA.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/X509$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/dh/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/dsa/DSAUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/dsa/KeyFactorySpi$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/dsa/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/dstu/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ec/KeyFactorySpi$EC.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ec/KeyFactorySpi$ECMQV.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ec/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ecgost/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/ecgost12/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/edec/KeyFactorySpi$ED25519.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/edec/KeyFactorySpi$ED448.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/edec/KeyFactorySpi$X25519.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/edec/KeyFactorySpi$X448.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/edec/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/elgamal/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/gost/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/rsa/BCRSAPublicKey.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/rsa/KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/rsa/RSAUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/util/BaseKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/util/ExtendedInvalidKeySpecException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/asymmetric/util/KeyUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/config/ProviderConfiguration.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/config/ProviderConfigurationPermission.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Blake2b$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Blake2s$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/DSTU7564$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/DigestAlgorithmProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/GOST3411$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Keccak$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/MD2$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/MD4$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/MD5$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/RIPEMD128$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/RIPEMD160$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/RIPEMD256$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/RIPEMD320$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA1$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA224$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA256$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA3$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA384$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SHA512$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/SM3$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Skein$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Tiger$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/digest/Whirlpool$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/drbg/DRBG$CoreSecureRandom.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/drbg/DRBG$HybridSecureRandom.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/drbg/DRBG$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/drbg/DRBG$URLSeededSecureRandom.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/drbg/DRBG.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/keystore/BC$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/keystore/BCFKS$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/keystore/PKCS12$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/AES$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/ARC4$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/ARIA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Blowfish$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/CAST5$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/CAST6$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Camellia$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/ChaCha$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/DES$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/DESede$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/DSTU7624$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/GOST28147$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/GOST3412_2015$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Grain128$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Grainv1$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/HC128$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/HC256$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/IDEA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Noekeon$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/OpenSSLPBKDF$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/PBEPBKDF1$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/PBEPBKDF2$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/PBEPKCS12$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Poly1305$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/RC2$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/RC5$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/RC6$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Rijndael$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/SCRYPT$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/SEED$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/SM4$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Salsa20$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Serpent$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Shacal2$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/SipHash$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Skipjack$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/SymmetricAlgorithmProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/TEA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/TLSKDF$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Threefish$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Twofish$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/VMPC$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/VMPCKSA3$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/XSalsa20$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/XTEA$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/Zuc$Mappings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/symmetric/util/ClassUtil.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/util/AlgorithmProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/util/AsymmetricAlgorithmProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/provider/util/AsymmetricKeyInfoConverter.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/spec/DHDomainParameterSpec.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/util/AlgorithmParametersUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/util/AnnotatedPrivateKey.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/util/DefaultJcaJceHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/util/JcaJceHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jcajce/util/ProviderJcaJceHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jce/provider/BouncyCastleProvider$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/jce/provider/BouncyCastleProviderConfiguration.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/AsymmetricKeyUnwrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/AsymmetricKeyWrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/ContentSigner.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/DefaultSecretKeySizeProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/DefaultSignatureAlgorithmIdentifierFinder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/DigestCalculator.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/GenericKey.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/InputDecryptor.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/KeyUnwrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/KeyWrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/OperatorCreationException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/OperatorException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/OperatorStreamException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/OutputEncryptor.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/RuntimeOperatorException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/SecretKeySizeProvider.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/SignatureAlgorithmIdentifierFinder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/SymmetricKeyUnwrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/SymmetricKeyWrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JcaContentSignerBuilder$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JcaContentSignerBuilder$SignatureOutputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JcaContentSignerBuilder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JceAsymmetricKeyUnwrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JceAsymmetricKeyWrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JceGenericKey.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JceSymmetricKeyUnwrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/JceSymmetricKeyWrapper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/OperatorHelper$OpCertificateException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/OperatorHelper.class"
+ },
+ {
+ "pattern": "org/bouncycastle/operator/jcajce/OperatorUtils.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/asn1/PQCObjectIdentifiers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/mceliece/McElieceCCA2KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/mceliece/McElieceKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/newhope/NHKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/qtesla/QTESLAKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/rainbow/RainbowKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/sphincs/Sphincs256KeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/xmss/XMSSKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/pqc/jcajce/provider/xmss/XMSSMTKeyFactorySpi.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Arrays.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Encodable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Integers.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Iterable.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Properties$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Properties.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Selector.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/StringList.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Strings$1.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/Strings.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/encoders/DecoderException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/encoders/Encoder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/encoders/EncoderException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/encoders/Hex.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/encoders/HexEncoder.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/io/StreamOverflowException.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/io/Streams.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/io/TeeInputStream.class"
+ },
+ {
+ "pattern": "org/bouncycastle/util/io/TeeOutputStream.class"
+ },
+ {
+ "pattern": "org/joda/time/tz/data/.+"
+ },
+ {
+ "pattern": "org/slf4j/impl/StaticLoggerBinder.class"
+ }
+ ]
+}
diff --git a/datasafe-cli/src/main/resources/extra_engines.hack b/datasafe-cli/src/main/resources/extra_engines.hack
new file mode 100644
index 000000000..442931623
--- /dev/null
+++ b/datasafe-cli/src/main/resources/extra_engines.hack
@@ -0,0 +1,2 @@
+X509Store=false,null
+X509StreamParser=false,null
diff --git a/datasafe-cli/src/test/bash/basic_functionality_test_fs.sh b/datasafe-cli/src/test/bash/basic_functionality_test_fs.sh
new file mode 100755
index 000000000..72a15603f
--- /dev/null
+++ b/datasafe-cli/src/test/bash/basic_functionality_test_fs.sh
@@ -0,0 +1,44 @@
+#!/bin/bash
+
+if [[ -z "$1" ]] ; then
+ echo "Test expects datasafe-cli executable path as 1st argument"
+ exit 1
+fi
+
+CLI="$1"
+PROFILE_ROOT="$(pwd)/cli-profiles/"
+SECRET_TEXT="Secret text"
+PRIVATE_ON_FS="folder-fs/secret_on_fs.txt"
+INBOX_ON_FS="hello.txt"
+
+do_exit() {
+ exit "$1"
+}
+
+echo 'Creating profile'
+yes '' | $CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" profile create || do_exit 1
+
+echo "$SECRET_TEXT" > my_secret.txt
+
+echo 'Store secret in FS'
+$CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" private cp my_secret.txt "$PRIVATE_ON_FS" || do_exit 1
+
+echo 'Verify FS file content'
+FS_TEXT=$($CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" private cat "$PRIVATE_ON_FS")
+[[ "$FS_TEXT" != "$SECRET_TEXT" ]] && echo "Filesystem has wrong file content" && do_exit 1
+echo 'Verify FS file list'
+FS_LIST=$($CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" private ls)
+[[ "$FS_LIST" != "$PRIVATE_ON_FS" ]] && echo "Filesystem has wrong file list" && do_exit 1
+
+echo 'Creating profile to share with'
+yes '' | $CLI -u=friend -p=password-friend -sp=system_password -rd="$PROFILE_ROOT" profile create || do_exit 1
+echo 'Sharing file with friend'
+$CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" inbox share -s=my_secret.txt -r=friend -f="$INBOX_ON_FS" || do_exit 1
+echo 'Verify FS inbox file content'
+FS_INBOX_TEXT=$($CLI -u=friend -p=password-friend -sp=system_password -rd="$PROFILE_ROOT" inbox cat "$INBOX_ON_FS")
+[[ "$FS_INBOX_TEXT" != "$SECRET_TEXT" ]] && echo "Filesystem has wrong shared file content" && do_exit 1
+echo 'Verify FS inbox file list'
+FS_INBOX_LIST=$($CLI -u=friend -p=password-friend -sp=system_password -rd="$PROFILE_ROOT" inbox ls)
+[[ "$FS_INBOX_LIST" != "$INBOX_ON_FS" ]] && echo "Filesystem has wrong shared file list" && exit 1
+
+do_exit 0
\ No newline at end of file
diff --git a/datasafe-cli/src/test/bash/basic_functionality_test_minio.sh b/datasafe-cli/src/test/bash/basic_functionality_test_minio.sh
new file mode 100755
index 000000000..373462825
--- /dev/null
+++ b/datasafe-cli/src/test/bash/basic_functionality_test_minio.sh
@@ -0,0 +1,64 @@
+#!/bin/bash
+
+if [[ -z "$1" ]] ; then
+ echo "Test expects datasafe-cli executable path as 1st argument"
+ exit 1
+fi
+
+# Docker not available on TravisCI-provided MacOS, allow to pass
+if ! [ -x "$(command -v docker)" ]; then
+ echo 'Error: docker is not installed. Will exit with code 0 not to fail pipeline'
+ exit 0
+fi
+
+CLI="$1"
+PROFILE_ROOT="$(pwd)/cli-profiles/"
+MINIO_ACCESS_KEY="minio-access-key"
+MINIO_SECRET_KEY="minio-secret-key"
+MINIO_BUCKET="testBucket"
+VOLUME="$(pwd)/minio"
+SECRET_TEXT="Secret text"
+PRIVATE_ON_MINIO="folder-minio/secret_on_minio.txt"
+
+
+# create minio volume bucket
+mkdir -p "$VOLUME/$MINIO_BUCKET"
+
+# Spin up minio to imitate S3, minio will create MINIO_BUCKET based on volume
+docker run -d \
+ --name MINIO \
+ -p 9000:9000 \
+ -e MINIO_ACCESS_KEY="$MINIO_ACCESS_KEY" \
+ -e MINIO_SECRET_KEY="$MINIO_SECRET_KEY" \
+ --mount type=bind,source="$VOLUME,target=/data" \
+ minio/minio \
+ server /data || exit 1
+
+# Wait some time for minio to spin up
+sleep 5
+
+do_exit() {
+ # Stop minio
+ echo "Stopping minio"
+ docker rm -f MINIO
+ exit "$1"
+}
+
+echo 'Creating profile'
+yes '' | $CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" profile create || do_exit 1
+
+echo 'Register MINIO storage'
+$CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" profile storage add -i=MINIO -p="http://127.0.0.1:9000/eu-central-1/$MINIO_BUCKET/" || do_exit 1
+$CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" profile storage credentials add -m="http://.+" -u="$MINIO_ACCESS_KEY" -p="$MINIO_SECRET_KEY" || do_exit 1
+
+echo "$SECRET_TEXT" > my_secret.txt
+
+# Checking how private files work on MINIO:
+echo 'Store secret in MINIO'
+$CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" private cp -s=MINIO my_secret.txt "$PRIVATE_ON_MINIO" || do_exit 1
+
+echo 'Verify MINIO'
+MINIO_TEXT=$($CLI -u=user -p=password -sp=system_password -rd="$PROFILE_ROOT" private cat -s=MINIO "$PRIVATE_ON_MINIO")
+[[ "$MINIO_TEXT" != "$SECRET_TEXT" ]] && echo "Minio has wrong file content" && do_exit 1
+
+do_exit 0
\ No newline at end of file
diff --git a/datasafe-directory/datasafe-directory-api/pom.xml b/datasafe-directory/datasafe-directory-api/pom.xml
index a0eeeaac7..a125a7f29 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.6.2
+ 0.7.0
datasafe-directory-api
@@ -23,4 +23,22 @@
lombok
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+
+
+ org.projectlombok
+ lombok
+ ${lombok.version}
+
+
+
+
+
+
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/DocumentKeyStoreOperations.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/DocumentKeyStoreOperations.java
index 48e15a33c..c7fa71171 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/DocumentKeyStoreOperations.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/DocumentKeyStoreOperations.java
@@ -2,7 +2,7 @@
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
import de.adorsys.datasafe.encrypiton.api.types.keystore.PublicKeyIDWithPublicKey;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import java.security.Key;
import java.util.List;
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/PrivateKeyService.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/PrivateKeyService.java
index 7d1bfda62..2acdc65de 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/PrivateKeyService.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/PrivateKeyService.java
@@ -1,6 +1,7 @@
package de.adorsys.datasafe.directory.api.profile.keys;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyIDWithKey;
import java.security.Key;
@@ -14,20 +15,30 @@ public interface PrivateKeyService {
/**
* Get path-encryption key that will be used to encrypt URI paths.
+ * Access validation is not necessary - done by this function implicitly.
* @param forUser Key owner
- * @return Path encryption secret key.
+ * @return Path encryption entity which contain secret keys and key ID.
*/
- SecretKeyIDWithKey pathEncryptionSecretKey(UserIDAuth forUser);
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey(UserIDAuth forUser);
/**
- * Get document-encryption key
+ * Get document-encryption key. Access validation is not necessary - done by this function implicitly.
* @param forUser Key owner
* @return Document encryption secret key.
*/
SecretKeyIDWithKey documentEncryptionSecretKey(UserIDAuth forUser);
+ /**
+ * Validates that user has access to his keystore. Should ignore any storage access exceptions
+ * to cover cases if keystore does not exist.
+ * @param forUser User to validate.
+ */
+ void validateUserHasAccessOrThrow(UserIDAuth forUser);
+
/**
* Raw access to get key by its ID specialized for getting multiple keys at a time.
+ * Access validation is not necessary - done by this function implicitly (but empty result set may indicate
+ * some problem).
* @param forUser Key owner
* @param keyIds Key IDs to receive keys for
* @return Map (key id - Key) from database/storage associated with {@code keyId}, those key ids from
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/StorageKeyStoreOperations.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/StorageKeyStoreOperations.java
index 68269680d..e81dd67c7 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/StorageKeyStoreOperations.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/keys/StorageKeyStoreOperations.java
@@ -3,7 +3,7 @@
import de.adorsys.datasafe.directory.api.types.StorageCredentials;
import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import java.util.Set;
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileOperations.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileOperations.java
index e344f342a..b9ba15123 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileOperations.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileOperations.java
@@ -4,5 +4,5 @@
* Aggregate interface for all profile operations.
*/
public interface ProfileOperations extends ProfileRegistrationService, ProfileUpdatingService, ProfileRetrievalService,
- ProfileRemovalService {
+ ProfileRemovalService, ProfileStorageCredentialsService {
}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileRetrievalService.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileRetrievalService.java
index 9dde46322..1cbabf9e0 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileRetrievalService.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileRetrievalService.java
@@ -19,7 +19,7 @@ public interface ProfileRetrievalService {
UserPublicProfile publicProfile(UserID ofUser);
/**
- * Resolves user's private meta-information like privatespace,keystore, etc. folder mapping.
+ * Resolves user's private meta-information like privatespace, keystore, etc. folder mapping.
* @param ofUser resolve request
* @return resolved user's profile
*/
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileStorageCredentialsService.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileStorageCredentialsService.java
new file mode 100644
index 000000000..6b3b290b9
--- /dev/null
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileStorageCredentialsService.java
@@ -0,0 +1,34 @@
+package de.adorsys.datasafe.directory.api.profile.operations;
+
+import de.adorsys.datasafe.directory.api.types.StorageCredentials;
+import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
+
+import java.util.Set;
+
+/**
+ * Defines storage credentials management operations.
+ */
+public interface ProfileStorageCredentialsService {
+
+ /**
+ * Registers credentials that allows user to access remote filesystems (i.e. Amazon S3 bucket)
+ * @param user Owner of storage credentials
+ * @param storageId Storage identifier - will be used to match URI in access request to storage credentials
+ * @param credentials Access credentials for storage.
+ */
+ void registerStorageCredentials(UserIDAuth user, StorageIdentifier storageId, StorageCredentials credentials);
+
+ /**
+ * Removes storeds credentials that allows user to access remote filesystems (i.e. Amazon S3 bucket)
+ * @param user Owner of storage credentials
+ * @param storageId Storage identifier - will be used to match URI in access request to storage credentials
+ */
+ void deregisterStorageCredentials(UserIDAuth user, StorageIdentifier storageId);
+
+ /**
+ * Lists storage credentials identifiers (regex-mappings)
+ * @param user storage credentials owner
+ */
+ Set listRegisteredStorageCredentials(UserIDAuth user);
+}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileUpdatingService.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileUpdatingService.java
index 44d4cba83..090db9368 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileUpdatingService.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/profile/operations/ProfileUpdatingService.java
@@ -1,11 +1,9 @@
package de.adorsys.datasafe.directory.api.profile.operations;
-import de.adorsys.datasafe.directory.api.types.StorageCredentials;
import de.adorsys.datasafe.directory.api.types.UserPrivateProfile;
import de.adorsys.datasafe.directory.api.types.UserPublicProfile;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
-import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
/**
* Updates users' profile in a system.
@@ -34,19 +32,4 @@ public interface ProfileUpdatingService {
* some requests using new password will fail until storage propagates data.
*/
void updateReadKeyPassword(UserIDAuth forUser, ReadKeyPassword newPassword);
-
- /**
- * Registers credentials that allows user to access remote filesystems (i.e. Amazon S3 bucket)
- * @param user Owner of storage credentials
- * @param storageId Storage identifier - will be used to match URI in access request to storage credentials
- * @param credentials Access credentials for storage.
- */
- void registerStorageCredentials(UserIDAuth user, StorageIdentifier storageId, StorageCredentials credentials);
-
- /**
- * Removes storeds credentials that allows user to access remote filesystems (i.e. Amazon S3 bucket)
- * @param user Owner of storage credentials
- * @param storageId Storage identifier - will be used to match URI in access request to storage credentials
- */
- void deregisterStorageCredentials(UserIDAuth user, StorageIdentifier storageId);
}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPrivateProfile.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPrivateProfile.java
index e942ab40b..8e70e21d1 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPrivateProfile.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPrivateProfile.java
@@ -1,6 +1,7 @@
package de.adorsys.datasafe.directory.api.types;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.global.Version;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.PrivateResource;
import de.adorsys.datasafe.types.api.resource.PublicResource;
@@ -65,9 +66,15 @@ public class CreateUserPrivateProfile {
*/
private final AbsoluteLocation publishPubKeysTo;
- public UserPrivateProfile removeAccess() {
+ /**
+ * Entity appVersion. Keeps version of datasafe which was used to create profile
+ */
+ @NonNull
+ @Builder.Default
+ private final Version appVersion = Version.current();
+
+ public UserPrivateProfile buildPrivateProfile() {
return UserPrivateProfile.builder()
- // FIXME - remove access ?
.keystore(keystore)
.privateStorage(new HashMap<>(Collections.singletonMap(StorageIdentifier.DEFAULT, privateStorage)))
.storageCredentialsKeystore(storageCredentialsKeystore)
@@ -75,6 +82,7 @@ public UserPrivateProfile removeAccess() {
.documentVersionStorage(documentVersionStorage)
.associatedResources(associatedResources)
.publishPublicKeysTo(publishPubKeysTo)
+ .appVersion(appVersion)
.build();
}
}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPublicProfile.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPublicProfile.java
index 502650322..492e7b2a2 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPublicProfile.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/CreateUserPublicProfile.java
@@ -1,6 +1,7 @@
package de.adorsys.datasafe.directory.api.types;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
+import de.adorsys.datasafe.types.api.global.Version;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.PublicResource;
import lombok.Builder;
@@ -32,11 +33,18 @@ public class CreateUserPublicProfile {
@NonNull
private final AbsoluteLocation inbox;
- public UserPublicProfile removeAccess() {
+ /**
+ * Entity appVersion. Keeps version of Datasafe which was used to create profile
+ */
+ @NonNull
+ @Builder.Default
+ private final Version appVersion = Version.current();
+
+ public UserPublicProfile buildPublicProfile() {
return UserPublicProfile.builder()
- // FIXME - remove access ?
.inbox(inbox)
.publicKeys(publicKeys)
+ .appVersion(appVersion)
.build();
}
}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPrivateProfile.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPrivateProfile.java
index 4eb86f1ff..ea08bfca6 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPrivateProfile.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPrivateProfile.java
@@ -1,5 +1,6 @@
package de.adorsys.datasafe.directory.api.types;
+import de.adorsys.datasafe.types.api.global.Version;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.PrivateResource;
import de.adorsys.datasafe.types.api.resource.PublicResource;
@@ -16,7 +17,7 @@
*/
@Data
@Builder(toBuilder = true)
-public class UserPrivateProfile {
+public class UserPrivateProfile{
/**
* Users' keystore location
@@ -61,4 +62,10 @@ public class UserPrivateProfile {
* Optional field used for getting storage credentials using default flow.
*/
private final AbsoluteLocation storageCredentialsKeystore;
+
+ /**
+ * Entity appVersion. Keeps appVersion of datasafe which was used to create profile
+ */
+ @NonNull
+ private final Version appVersion;
}
diff --git a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPublicProfile.java b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPublicProfile.java
index 502ebe13e..b966792a1 100644
--- a/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPublicProfile.java
+++ b/datasafe-directory/datasafe-directory-api/src/main/java/de/adorsys/datasafe/directory/api/types/UserPublicProfile.java
@@ -1,5 +1,6 @@
package de.adorsys.datasafe.directory.api.types;
+import de.adorsys.datasafe.types.api.global.Version;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.PublicResource;
import lombok.Builder;
@@ -24,4 +25,10 @@ public class UserPublicProfile {
*/
@NonNull
private final AbsoluteLocation inbox;
+
+ /**
+ * Entity appVersion. Keeps version (logical, not release) of datasafe which was used to create profile
+ */
+ @NonNull
+ private final Version appVersion;
}
diff --git a/datasafe-directory/datasafe-directory-impl/pom.xml b/datasafe-directory/datasafe-directory-impl/pom.xml
index 735062af1..61f6397d9 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.6.2
+ 0.7.0
datasafe-directory-impl
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DFSConfigWithStorageCreds.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DFSConfigWithStorageCreds.java
index abf73f15e..71a2f81c2 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DFSConfigWithStorageCreds.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DFSConfigWithStorageCreds.java
@@ -2,7 +2,7 @@
import de.adorsys.datasafe.directory.api.types.CreateUserPrivateProfile;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadStorePassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.types.api.resource.Uri;
import java.net.URI;
@@ -14,22 +14,18 @@ public DFSConfigWithStorageCreds(Uri systemRoot, ReadStorePassword systemPasswor
super(systemRoot, systemPassword, userProfileLocation);
}
- public DFSConfigWithStorageCreds(String systemRoot, String systemPassword) {
+ public DFSConfigWithStorageCreds(String systemRoot, ReadStorePassword systemPassword) {
super(systemRoot, systemPassword);
}
- public DFSConfigWithStorageCreds(URI systemRoot, String systemPassword) {
+ public DFSConfigWithStorageCreds(URI systemRoot, ReadStorePassword systemPassword) {
super(systemRoot, systemPassword);
}
- public DFSConfigWithStorageCreds(Uri systemRoot, String systemPassword) {
+ public DFSConfigWithStorageCreds(Uri systemRoot, ReadStorePassword systemPassword) {
super(systemRoot, systemPassword);
}
- public DFSConfigWithStorageCreds(Uri systemRoot, String systemPassword, UserProfileLocation userProfileLocation) {
- super(systemRoot, systemPassword, userProfileLocation);
- }
-
@Override
public CreateUserPrivateProfile defaultPrivateTemplate(UserIDAuth id) {
CreateUserPrivateProfile base = super.defaultPrivateTemplate(id);
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DefaultDFSConfig.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DefaultDFSConfig.java
index d02e4274e..d849c961c 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DefaultDFSConfig.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/DefaultDFSConfig.java
@@ -6,9 +6,8 @@
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadStorePassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.types.api.resource.*;
-import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
@@ -19,7 +18,6 @@
* Default DFS folders layout provider, suitable both for s3 and filesystem.
*/
@Slf4j
-@RequiredArgsConstructor
public class DefaultDFSConfig implements DFSConfig {
protected static final String USERS_ROOT = "users/";
@@ -38,7 +36,7 @@ public class DefaultDFSConfig implements DFSConfig {
* to place everything in datasafe/system directory within storage
* @param systemPassword System password to open keystore
*/
- public DefaultDFSConfig(String systemRoot, String systemPassword) {
+ public DefaultDFSConfig(String systemRoot, ReadStorePassword systemPassword) {
this(new Uri(systemRoot), systemPassword);
}
@@ -47,7 +45,7 @@ public DefaultDFSConfig(String systemRoot, String systemPassword) {
* to place everything in datasafe/system directory within storage
* @param systemPassword System password to open keystore
*/
- public DefaultDFSConfig(URI systemRoot, String systemPassword) {
+ public DefaultDFSConfig(URI systemRoot, ReadStorePassword systemPassword) {
this(new Uri(systemRoot), systemPassword);
}
@@ -56,7 +54,7 @@ public DefaultDFSConfig(URI systemRoot, String systemPassword) {
* to place everything in datasafe/system directory within storage
* @param systemPassword System password to open keystore
*/
- public DefaultDFSConfig(Uri systemRoot, String systemPassword) {
+ public DefaultDFSConfig(Uri systemRoot, ReadStorePassword systemPassword) {
this(systemRoot, systemPassword, new DefaultUserProfileLocationImpl(systemRoot));
}
@@ -66,10 +64,10 @@ public DefaultDFSConfig(Uri systemRoot, String systemPassword) {
* @param systemPassword System password to open keystore
* @param userProfileLocation Bootstrap for user profile files placement
*/
- public DefaultDFSConfig(Uri systemRoot, String systemPassword, UserProfileLocation userProfileLocation) {
+ public DefaultDFSConfig(Uri systemRoot, ReadStorePassword systemPassword, UserProfileLocation userProfileLocation) {
systemRoot = addTrailingSlashIfNeeded(systemRoot);
this.systemRoot = systemRoot;
- this.systemPassword = new ReadStorePassword(systemPassword);
+ this.systemPassword = systemPassword;
this.userProfileLocation = userProfileLocation;
log.debug("Root is {}", dfsRoot());
}
@@ -166,12 +164,15 @@ public static URI addTrailingSlashIfNeeded(URI systemRoot) {
public static String addTrailingSlashIfNeeded(String systemRoot) {
if (systemRoot == null) {
- throw new RuntimeException("systemRoot must not be null");
+ throw new IllegalArgumentException("systemRoot must not be null");
}
+
int last = systemRoot.length();
- if (systemRoot.substring(last - 1).equals("/")) {
+
+ if (!systemRoot.isEmpty() && systemRoot.substring(last - 1).equals("/")) {
return systemRoot;
}
+
return systemRoot + "/";
}
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/MultiDFSConfig.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/MultiDFSConfig.java
index 9ca68a21e..1c7c716d4 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/MultiDFSConfig.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/config/MultiDFSConfig.java
@@ -1,6 +1,7 @@
package de.adorsys.datasafe.directory.impl.profile.config;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.BasePrivateResource;
import de.adorsys.datasafe.types.api.resource.Uri;
@@ -11,7 +12,7 @@ public class MultiDFSConfig extends DefaultDFSConfig {
private final Uri profilesPath;
- public MultiDFSConfig(URI fsPath, URI profilesPath, String systemPassword) {
+ public MultiDFSConfig(URI fsPath, URI profilesPath, ReadStorePassword systemPassword) {
super(fsPath, systemPassword);
this.profilesPath = new Uri(profilesPath);
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/dfs/RegexAccessServiceWithStorageCredentialsImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/dfs/RegexAccessServiceWithStorageCredentialsImpl.java
index d226442e6..fb2aca55d 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/dfs/RegexAccessServiceWithStorageCredentialsImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/dfs/RegexAccessServiceWithStorageCredentialsImpl.java
@@ -15,6 +15,7 @@
import javax.inject.Inject;
import java.util.Optional;
+import java.util.Set;
/**
* Specifies how to access desired user resource (example: private bucket). Reads credentials that are associated
@@ -74,9 +75,15 @@ public AbsoluteLocation withSystemAccess(AbsoluteLocation resource) {
private Optional getStorageAccessCredentials(UserIDAuth user, PrivateResource resource) {
String uri = resource.location().asString();
- return storageKeyStoreOperations.get().readAliases(user)
+ Set aliases = storageKeyStoreOperations.get().readAliases(user);
+
+ Optional directMatch = aliases
.stream()
.filter(it -> uri.matches(it.getId()))
.findFirst();
+
+ return directMatch.isPresent()
+ ? directMatch
+ : aliases.stream().filter(it -> StorageIdentifier.DEFAULT.getId().equals(it.getId())).findFirst();
}
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DFSPrivateKeyServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DFSPrivateKeyServiceImpl.java
index 705f485cb..56e0b5d8f 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DFSPrivateKeyServiceImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DFSPrivateKeyServiceImpl.java
@@ -4,24 +4,30 @@
import de.adorsys.datasafe.directory.api.profile.keys.PrivateKeyService;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyID;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyIDWithKey;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import lombok.SneakyThrows;
+import lombok.extern.slf4j.Slf4j;
+import javax.crypto.BadPaddingException;
import javax.crypto.SecretKey;
import javax.inject.Inject;
import java.security.Key;
+import java.security.KeyStoreException;
+import java.security.UnrecoverableKeyException;
+import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.DOCUMENT_KEY_ID_PREFIX;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.PATH_KEY_ID_PREFIX;
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.*;
/**
* Retrieves and opens private keystore associated with user location DFS storage.
* Attempts to re-read keystore if not able to open it.
*/
+@Slf4j
@RuntimeDelegate
public class DFSPrivateKeyServiceImpl implements PrivateKeyService {
@@ -36,8 +42,15 @@ public DFSPrivateKeyServiceImpl(DocumentKeyStoreOperations keyStoreOper) {
* Reads path encryption secret key from DFS and caches the result.
*/
@Override
- public SecretKeyIDWithKey pathEncryptionSecretKey(UserIDAuth forUser) {
- return keyByPrefix(forUser, PATH_KEY_ID_PREFIX);
+ public AuthPathEncryptionSecretKey pathEncryptionSecretKey(UserIDAuth forUser) {
+ Set aliases = keyStoreOper.readAliases(forUser);
+ SecretKeyIDWithKey secretPathKeyId = keyByPrefix(forUser, aliases, PATH_KEY_ID_PREFIX);
+ SecretKeyIDWithKey secretPathCtrKeyId = keyByPrefix(forUser, aliases, PATH_KEY_ID_PREFIX_CTR);
+
+ return new AuthPathEncryptionSecretKey(
+ secretPathKeyId,
+ secretPathCtrKeyId
+ );
}
/**
@@ -48,6 +61,28 @@ public SecretKeyIDWithKey documentEncryptionSecretKey(UserIDAuth forUser) {
return keyByPrefix(forUser, DOCUMENT_KEY_ID_PREFIX);
}
+ /**
+ * Read users' document access key to validate that he can open his keystore.
+ */
+ @Override
+ @SneakyThrows
+ public void validateUserHasAccessOrThrow(UserIDAuth forUser) {
+ // avoid only unauthorized access
+ try {
+ keyByPrefix(forUser, DOCUMENT_KEY_ID_PREFIX); // for access check
+ } catch (RuntimeException ex) {
+ // lombok @SneakyThrows handling
+ if (ex.getCause() instanceof KeyStoreException
+ || ex.getCause() instanceof UnrecoverableKeyException
+ || ex.getCause() instanceof BadPaddingException) {
+ throw ex.getCause();
+ }
+
+ // It is safe to ignore other types of exceptions - i.e. keystore does not exist
+ log.debug("Caught exception while validating keystore access", ex.getCause());
+ }
+ }
+
/**
* Reads private or secret key from DFS and caches the keystore associated with it.
*/
@@ -63,8 +98,16 @@ public Map keysByIds(UserIDAuth forUser, Set keyIds) {
);
}
- private SecretKeyIDWithKey keyByPrefix(UserIDAuth forUser, String prefix) {
- KeyID key = keyStoreOper.readAliases(forUser).stream()
+ protected SecretKeyIDWithKey keyByPrefix(UserIDAuth forUser, String prefix) {
+ return keyByPrefix(
+ forUser,
+ keyStoreOper.readAliases(forUser),
+ prefix
+ );
+ }
+
+ protected SecretKeyIDWithKey keyByPrefix(UserIDAuth forUser, Collection aliases, String prefix) {
+ KeyID key = aliases.stream()
.filter(it -> it.startsWith(prefix))
.map(KeyID::new)
.findFirst()
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DefaultKeyStoreCache.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DefaultKeyStoreCache.java
index 974c39e91..ea48714ec 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DefaultKeyStoreCache.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DefaultKeyStoreCache.java
@@ -18,7 +18,7 @@
public class DefaultKeyStoreCache implements KeyStoreCache {
private final Map> publicKeys;
- private final Map keystore;
+ private final UserKeyStoreCache keystore;
private final Map storageAccess;
@Inject
@@ -27,7 +27,7 @@ public DefaultKeyStoreCache(
Map keystore,
Map storageAccess) {
this.publicKeys = publicKeys;
- this.keystore = keystore;
+ this.keystore = new UserKeyStoreCache(keystore);
this.storageAccess = storageAccess;
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DocumentKeyStoreOperationsImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DocumentKeyStoreOperationsImpl.java
index b1c683aaa..bcd3eb2bf 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DocumentKeyStoreOperationsImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/DocumentKeyStoreOperationsImpl.java
@@ -7,6 +7,7 @@
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
import de.adorsys.datasafe.storage.api.actions.StorageWriteService;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
@@ -14,6 +15,8 @@
import de.adorsys.datasafe.types.api.resource.PrivateResource;
import de.adorsys.datasafe.types.api.resource.ResourceLocation;
import de.adorsys.datasafe.types.api.resource.WithCallback;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
@@ -31,6 +34,7 @@
@RuntimeDelegate
public class DocumentKeyStoreOperationsImpl implements DocumentKeyStoreOperations {
+ private final KeyCreationConfig config;
private final GenericKeystoreOperations genericOper;
private final DFSConfig dfsConfig;
private final BucketAccessService access;
@@ -40,10 +44,16 @@ public class DocumentKeyStoreOperationsImpl implements DocumentKeyStoreOperation
private final KeyStoreService keyStoreService;
@Inject
- public DocumentKeyStoreOperationsImpl(GenericKeystoreOperations genericOper, DFSConfig dfsConfig,
- BucketAccessService access, ProfileRetrievalService profile,
- StorageWriteService writeService, KeyStoreCache keystoreCache,
- KeyStoreService keyStoreService) {
+ public DocumentKeyStoreOperationsImpl(
+ KeyCreationConfig config,
+ GenericKeystoreOperations genericOper,
+ DFSConfig dfsConfig,
+ BucketAccessService access,
+ ProfileRetrievalService profile,
+ StorageWriteService writeService,
+ KeyStoreCache keystoreCache,
+ KeyStoreService keyStoreService) {
+ this.config = config;
this.genericOper = genericOper;
this.dfsConfig = dfsConfig;
this.access = access;
@@ -77,8 +87,7 @@ public List createAndWriteKeyStore(UserIDAuth forUser)
KeyStoreAuth auth = keystoreAuth(forUser, forUser.getReadKeyPassword());
KeyStore keystoreBlob = keyStoreService.createKeyStore(
auth,
- KeyStoreType.DEFAULT,
- new KeyStoreCreationConfig(1, 1)
+ config
);
writeKeystore(forUser.getUserID(), auth, keystoreLocationWithAccess(forUser), keystoreBlob);
@@ -116,7 +125,7 @@ private > void writeKeystore(UserID forUser, KeySt
private KeyStore keyStore(UserIDAuth forUser) {
return keystoreCache.getKeystore().computeIfAbsent(
- forUser.getUserID(),
+ forUser,
userId -> {
AbsoluteLocation location = keystoreLocationWithAccess(forUser);
return genericOper.readKeyStore(forUser, location);
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/GenericKeystoreOperations.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/GenericKeystoreOperations.java
index 0f0cf289b..3f1194a48 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/GenericKeystoreOperations.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/GenericKeystoreOperations.java
@@ -5,11 +5,10 @@
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreType;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadStorePassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.storage.api.actions.StorageReadService;
import de.adorsys.datasafe.storage.api.actions.StorageWriteService;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
@@ -36,6 +35,7 @@
@RuntimeDelegate
public class GenericKeystoreOperations {
+ private final KeyCreationConfig config;
private final DFSConfig dfsConfig;
private final StorageWriteService writeService;
private final StorageReadService readService;
@@ -43,9 +43,14 @@ public class GenericKeystoreOperations {
private final KeyStoreService keyStoreService;
@Inject
- public GenericKeystoreOperations(DFSConfig dfsConfig, StorageWriteService writeService,
- StorageReadService readService, KeyStoreCache keystoreCache,
- KeyStoreService keyStoreService) {
+ public GenericKeystoreOperations(
+ KeyCreationConfig config,
+ DFSConfig dfsConfig,
+ StorageWriteService writeService,
+ StorageReadService readService,
+ KeyStoreCache keystoreCache,
+ KeyStoreService keyStoreService) {
+ this.config = config;
this.dfsConfig = dfsConfig;
this.writeService = writeService;
this.readService = readService;
@@ -54,8 +59,10 @@ public GenericKeystoreOperations(DFSConfig dfsConfig, StorageWriteService writeS
}
public KeyStore createEmptyKeystore(UserIDAuth auth) {
- return keyStoreService
- .createKeyStore(keystoreAuth(auth), KeyStoreType.DEFAULT, new KeyStoreCreationConfig(0, 0));
+ return keyStoreService.createKeyStore(
+ keystoreAuth(auth),
+ config.toBuilder().signKeyNumber(0).encKeyNumber(0).build()
+ );
}
/**
@@ -65,10 +72,10 @@ public KeyStore createEmptyKeystore(UserIDAuth auth) {
@SneakyThrows
public Key getKey(Supplier keystore, UserIDAuth forUser, String alias) {
try {
- return keystore.get().getKey(alias, forUser.getReadKeyPassword().getValue().toCharArray());
+ return keystore.get().getKey(alias, forUser.getReadKeyPassword().getValue());
} catch (UnrecoverableKeyException ex) {
keystoreCache.remove(forUser.getUserID());
- return keystore.get().getKey(alias, forUser.getReadKeyPassword().getValue().toCharArray());
+ return keystore.get().getKey(alias, forUser.getReadKeyPassword().getValue());
}
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/KeyStoreCache.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/KeyStoreCache.java
index eb4ad2905..21be31c56 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/KeyStoreCache.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/KeyStoreCache.java
@@ -20,7 +20,7 @@ public interface KeyStoreCache {
/**
* Cache for users' private/secret keys
*/
- Map getKeystore();
+ UserKeyStoreCache getKeystore();
/**
* Cache for users' storage access
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/StorageKeyStoreOperationsImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/StorageKeyStoreOperationsImpl.java
index a448b4864..feabde8ce 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/StorageKeyStoreOperationsImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/StorageKeyStoreOperationsImpl.java
@@ -8,7 +8,7 @@
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreAccess;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.PrivateResource;
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/UserKeyStoreCache.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/UserKeyStoreCache.java
new file mode 100644
index 000000000..f59739d0c
--- /dev/null
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/keys/UserKeyStoreCache.java
@@ -0,0 +1,85 @@
+package de.adorsys.datasafe.directory.impl.profile.keys;
+
+import de.adorsys.datasafe.encrypiton.api.types.UserID;
+import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import lombok.AllArgsConstructor;
+import lombok.SneakyThrows;
+import lombok.experimental.Delegate;
+import lombok.extern.slf4j.Slf4j;
+
+import java.security.Key;
+import java.security.KeyStore;
+import java.util.Enumeration;
+import java.util.Map;
+import java.util.function.Function;
+
+@Slf4j
+@AllArgsConstructor
+public class UserKeyStoreCache {
+ @Delegate (excludes = ExcludeComputeIfAbsent.class)
+ private final Map map;
+
+
+ /*
+ The original Map.computeIfAbsent method must not be called and thus is not provided
+ by this class! It is task of the DefaultKeyStoreCache to generate a new Uber Key Store
+ for the cache only. For that the password needed, which is
+ not provided in this method here, is expected too. See next method.
+
+ public KeyStore computeIfAbsent(UserID key, Function super UserID, ? extends KeyStore> mappingFunction) {}
+ */
+
+ /**
+ * If the keyStore provided is a not a UBER KeyStore, a new UBER KeyStore without a
+ * ReadStorePassword is created. This store is returned and stored in the map.
+ *
+ * @param userIDAuth
+ * @param mappingFunction
+ * @return always a UBER KeyStore
+ */
+ public KeyStore computeIfAbsent(UserIDAuth userIDAuth, Function super UserID, ? extends KeyStore> mappingFunction) {
+ if (map.containsKey(userIDAuth.getUserID())) {
+ return map.get(userIDAuth.getUserID());
+ }
+ KeyStore keyStore = mappingFunction.apply(userIDAuth.getUserID());
+ if (! "UBER".equals(keyStore.getType())) {
+ keyStore = convertKeyStoreToUberKeyStore(userIDAuth, keyStore);
+ }
+ map.put(userIDAuth.getUserID(), keyStore);
+ return keyStore;
+
+ }
+
+ /**
+ * Does the conversion of any keyStore to a UBER KeyStore.
+ *
+ * @param currentCredentials
+ * @param current
+ * @return
+ */
+ @SneakyThrows
+ private KeyStore convertKeyStoreToUberKeyStore(UserIDAuth currentCredentials, KeyStore current) {
+ log.debug("the keystore for user {} is of type {} and will be converted to uber in cache", currentCredentials.getUserID(), current.getType() );
+
+ KeyStore newKeystore = KeyStore.getInstance("UBER");
+ newKeystore.load(null, null);
+ Enumeration aliases = current.aliases();
+
+ while (aliases.hasMoreElements()) {
+ String alias = aliases.nextElement();
+ Key currentKey = current.getKey(alias, currentCredentials.getReadKeyPassword().getValue());
+ newKeystore.setKeyEntry(
+ alias,
+ currentKey,
+ currentCredentials.getReadKeyPassword().getValue(),
+ current.getCertificateChain(alias)
+ );
+ }
+
+ return newKeystore;
+ }
+
+ private interface ExcludeComputeIfAbsent {
+ KeyStore computeIfAbsent(UserID key, Function super UserID, ? extends KeyStore> mappingFunction);
+ }
+}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/DFSBasedProfileStorageImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/DFSBasedProfileStorageImpl.java
index 2be9aab9f..686c97366 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/DFSBasedProfileStorageImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/DFSBasedProfileStorageImpl.java
@@ -1,10 +1,6 @@
package de.adorsys.datasafe.directory.impl.profile.operations;
-import de.adorsys.datasafe.directory.api.profile.operations.ProfileOperations;
-import de.adorsys.datasafe.directory.api.profile.operations.ProfileRegistrationService;
-import de.adorsys.datasafe.directory.api.profile.operations.ProfileRemovalService;
-import de.adorsys.datasafe.directory.api.profile.operations.ProfileRetrievalService;
-import de.adorsys.datasafe.directory.api.profile.operations.ProfileUpdatingService;
+import de.adorsys.datasafe.directory.api.profile.operations.*;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import lombok.experimental.Delegate;
import lombok.extern.slf4j.Slf4j;
@@ -30,13 +26,18 @@ public class DFSBasedProfileStorageImpl implements ProfileOperations {
@Delegate
private final ProfileUpdatingService updatingService;
+ @Delegate
+ private final ProfileStorageCredentialsService storageCredentialsService;
+
@Inject
public DFSBasedProfileStorageImpl(ProfileRegistrationService registrationService,
ProfileRetrievalService retrievalService, ProfileRemovalService removalService,
- ProfileUpdatingService updatingService) {
+ ProfileUpdatingService updatingService,
+ ProfileStorageCredentialsService storageCredentialsService) {
this.registrationService = registrationService;
this.retrievalService = retrievalService;
this.removalService = removalService;
this.updatingService = updatingService;
+ this.storageCredentialsService = storageCredentialsService;
}
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRegistrationServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRegistrationServiceImpl.java
index 30b867560..3ee10a623 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRegistrationServiceImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRegistrationServiceImpl.java
@@ -61,7 +61,7 @@ public ProfileRegistrationServiceImpl(ProfileStoreService storeProfile,
@SneakyThrows
public void registerPublic(CreateUserPublicProfile profile) {
log.debug("Register public {}", profile);
- storeProfile.registerPublic(profile.getId(), profile.removeAccess());
+ storeProfile.registerPublic(profile.getId(), profile.buildPublicProfile());
}
/**
@@ -74,7 +74,7 @@ public void registerPublic(CreateUserPublicProfile profile) {
@SneakyThrows
public void registerPrivate(CreateUserPrivateProfile profile) {
log.debug("Register private {}", profile);
- storeProfile.registerPrivate(profile.getId().getUserID(), profile.removeAccess());
+ storeProfile.registerPrivate(profile.getId().getUserID(), profile.buildPrivateProfile());
}
@Override
@@ -115,7 +115,7 @@ public void registerUsingDefaults(UserIDAuth user) {
registerPublic(dfsConfig.defaultPublicTemplate(user.getUserID()));
CreateUserPrivateProfile privateProfile = dfsConfig.defaultPrivateTemplate(user);
registerPrivate(privateProfile);
- createAllAllowableKeystores(user, privateProfile.removeAccess());
+ createAllAllowableKeystores(user, privateProfile.buildPrivateProfile());
}
@SneakyThrows
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRemovalServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRemovalServiceImpl.java
index a6335c11e..bc846f643 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRemovalServiceImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRemovalServiceImpl.java
@@ -63,7 +63,7 @@ public void deregister(UserIDAuth userID) {
}
// NOP just check that user has access
- privateKeyService.documentEncryptionSecretKey(userID);
+ privateKeyService.validateUserHasAccessOrThrow(userID);
UserPublicProfile publicProfile = retrievalService.publicProfile(userID.getUserID());
UserPrivateProfile privateProfile = retrievalService.privateProfile(userID);
@@ -98,6 +98,7 @@ public void deregister(UserIDAuth userID) {
keyStoreCache.remove(userID.getUserID());
log.debug("Deregistered user {}", userID);
+ userID.getReadKeyPassword().clear();
}
protected void removeUserProfileFiles(UserID forUser) {
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRetrievalServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRetrievalServiceImpl.java
index b3dc053a8..a31266159 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRetrievalServiceImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileRetrievalServiceImpl.java
@@ -52,6 +52,7 @@ public UserPublicProfile publicProfile(UserID ofUser) {
ofUser,
id -> readProfile(dfsConfig.publicProfile(ofUser), UserPublicProfile.class)
);
+
log.debug("get public profile {} for user {}", userPublicProfile, ofUser);
return userPublicProfile;
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileStorageCredentialsServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileStorageCredentialsServiceImpl.java
new file mode 100644
index 000000000..27e368214
--- /dev/null
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileStorageCredentialsServiceImpl.java
@@ -0,0 +1,50 @@
+package de.adorsys.datasafe.directory.impl.profile.operations.actions;
+
+import de.adorsys.datasafe.directory.api.profile.keys.PrivateKeyService;
+import de.adorsys.datasafe.directory.api.profile.keys.StorageKeyStoreOperations;
+import de.adorsys.datasafe.directory.api.profile.operations.ProfileStorageCredentialsService;
+import de.adorsys.datasafe.directory.api.types.StorageCredentials;
+import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
+import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
+
+import javax.inject.Inject;
+import java.util.Set;
+
+@RuntimeDelegate
+public class ProfileStorageCredentialsServiceImpl implements ProfileStorageCredentialsService {
+
+ private final StorageKeyStoreOperations keyStoreOper;
+ private final PrivateKeyService privateKeyService;
+
+ @Inject
+ public ProfileStorageCredentialsServiceImpl(StorageKeyStoreOperations keyStoreOper,
+ PrivateKeyService privateKeyService) {
+ this.keyStoreOper = keyStoreOper;
+ this.privateKeyService = privateKeyService;
+ }
+
+ @Override
+ public Set listRegisteredStorageCredentials(UserIDAuth user) {
+ validateKeystoreAccess(user);
+ return keyStoreOper.readAliases(user);
+ }
+
+ @Override
+ public void registerStorageCredentials(
+ UserIDAuth user, StorageIdentifier storageId, StorageCredentials credentials) {
+ validateKeystoreAccess(user);
+ keyStoreOper.addStorageCredentials(user, storageId, credentials);
+ }
+
+ @Override
+ public void deregisterStorageCredentials(UserIDAuth user, StorageIdentifier storageId) {
+ validateKeystoreAccess(user);
+ keyStoreOper.removeStorageCredentials(user, storageId);
+ }
+
+ private void validateKeystoreAccess(UserIDAuth user) {
+ // avoid only unauthorized access
+ privateKeyService.validateUserHasAccessOrThrow(user); // for access check
+ }
+}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileUpdatingServiceImpl.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileUpdatingServiceImpl.java
index f096eb57f..0291ea5f8 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileUpdatingServiceImpl.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/operations/actions/ProfileUpdatingServiceImpl.java
@@ -4,20 +4,15 @@
import de.adorsys.datasafe.directory.api.profile.keys.PrivateKeyService;
import de.adorsys.datasafe.directory.api.profile.keys.StorageKeyStoreOperations;
import de.adorsys.datasafe.directory.api.profile.operations.ProfileUpdatingService;
-import de.adorsys.datasafe.directory.api.types.StorageCredentials;
import de.adorsys.datasafe.directory.api.types.UserPrivateProfile;
import de.adorsys.datasafe.directory.api.types.UserPublicProfile;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
-import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
-import javax.crypto.BadPaddingException;
import javax.inject.Inject;
-import java.security.KeyStoreException;
-import java.security.UnrecoverableKeyException;
@Slf4j
@RuntimeDelegate
@@ -61,31 +56,8 @@ public void updateReadKeyPassword(UserIDAuth forUser, ReadKeyPassword newPasswor
storageKeyStoreOper.updateReadKeyPassword(forUser, newPassword);
}
- @Override
- public void registerStorageCredentials(
- UserIDAuth user, StorageIdentifier storageId, StorageCredentials credentials) {
- validateKeystoreAccess(user);
- storageKeyStoreOper.addStorageCredentials(user, storageId, credentials);
- }
-
- @Override
- public void deregisterStorageCredentials(UserIDAuth user, StorageIdentifier storageId) {
- validateKeystoreAccess(user);
- storageKeyStoreOper.removeStorageCredentials(user, storageId);
- }
-
@SneakyThrows
private void validateKeystoreAccess(UserIDAuth user) {
- // avoid only unauthorized access
- try {
- privateKeyService.documentEncryptionSecretKey(user); // for access check
- } catch (RuntimeException ex) {
- // lombok @SneakyThrows handling
- if (ex.getCause() instanceof KeyStoreException
- || ex.getCause() instanceof UnrecoverableKeyException
- || ex.getCause() instanceof BadPaddingException) {
- throw ex.getCause();
- }
- }
+ privateKeyService.validateUserHasAccessOrThrow(user);
}
}
diff --git a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/serde/GsonSerde.java b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/serde/GsonSerde.java
index eda3430d0..67f19592e 100644
--- a/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/serde/GsonSerde.java
+++ b/datasafe-directory/datasafe-directory-impl/src/main/java/de/adorsys/datasafe/directory/impl/profile/serde/GsonSerde.java
@@ -1,32 +1,18 @@
package de.adorsys.datasafe.directory.impl.profile.serde;
-import com.google.common.reflect.TypeToken;
-import com.google.gson.Gson;
-import com.google.gson.GsonBuilder;
-import com.google.gson.JsonDeserializer;
-import com.google.gson.JsonObject;
-import com.google.gson.JsonPrimitive;
-import com.google.gson.JsonSerializer;
+import com.google.gson.*;
import de.adorsys.datasafe.encrypiton.api.keystore.PublicKeySerde;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
-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.PrivateResource;
-import de.adorsys.datasafe.types.api.resource.PublicResource;
-import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
-import de.adorsys.datasafe.types.api.resource.Uri;
+import de.adorsys.datasafe.types.api.resource.*;
import lombok.experimental.Delegate;
import javax.inject.Inject;
import java.net.URI;
import java.security.PublicKey;
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.Map;
/**
* User profile to json serializer/deserializer.
+ *
* @implNote By default, is used to store profiles as json files.
*/
@RuntimeDelegate
@@ -73,33 +59,6 @@ public GsonSerde(PublicKeySerde pubSerde) {
(JsonSerializer) (elem, type, ctx) -> new JsonPrimitive(pubSerde.writePubKey(elem))
);
- Gson basic = gsonBuilder.enableComplexMapKeySerialization().create();
-
- // Allow support for old-style profiles that have 1 single private storage
- gsonBuilder.registerTypeAdapter(
- new TypeToken
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+
+
+ org.projectlombok
+ lombok
+ ${lombok.version}
+
+
+
+
+
+
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/keystore/KeyStoreService.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/keystore/KeyStoreService.java
index 0b55e9638..6f081a0e3 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/keystore/KeyStoreService.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/keystore/KeyStoreService.java
@@ -1,6 +1,8 @@
package de.adorsys.datasafe.encrypiton.api.keystore;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import javax.crypto.spec.SecretKeySpec;
import java.security.KeyStore;
@@ -19,25 +21,21 @@ public interface KeyStoreService {
/**
* Creates keystore.
* @param keyStoreAuth Keys for opening keystore and reading key from it
- * @param keyStoreType Keystore type, example: PKCS or PKCS12 or JKS
* @param config Keystore will be pre-populated with keys according to it
* @return Built keystore that is ready to use
*/
KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
- KeyStoreType keyStoreType,
- KeyStoreCreationConfig config);
+ KeyCreationConfig config);
/**
* Creates keystore that has additional secret keys in it.
* @param keyStoreAuth Keys for opening keystore and reading key from it
- * @param keyStoreType Keystore type, example: PKCS12 or UBER or JKS
* @param config Keystore will be pre-populated with keys according to it
* @param secretKeys Secret keys to store in keystore, if value is empty - key will be generated
* @return Built keystore that is ready to use
*/
KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
- KeyStoreType keyStoreType,
- KeyStoreCreationConfig config,
+ KeyCreationConfig config,
Map> secretKeys);
/**
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/pathencryption/encryption/SymmetricPathEncryptionService.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/pathencryption/encryption/SymmetricPathEncryptionService.java
index e99a04937..eb19adacd 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/pathencryption/encryption/SymmetricPathEncryptionService.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/pathencryption/encryption/SymmetricPathEncryptionService.java
@@ -1,9 +1,8 @@
package de.adorsys.datasafe.encrypiton.api.pathencryption.encryption;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
import de.adorsys.datasafe.types.api.resource.Uri;
-import javax.crypto.SecretKey;
-
/**
* Encrypts and decrypts relative URI's using symmetric cryptography.
*/
@@ -11,17 +10,18 @@ public interface SymmetricPathEncryptionService {
/**
* Encrypts relative URI using secret key and serializes it into URL-friendly format.
- * @param secretKey Key to encrypt with
+ * @param pathEncryptionSecretKey entity with keys for encrypt path
* @param bucketPath Path to encrypt
* @return Encrypted relative URI that can be safely published.
*/
- Uri encrypt(SecretKey secretKey, Uri bucketPath);
+ Uri encrypt(AuthPathEncryptionSecretKey pathEncryptionSecretKey, Uri bucketPath);
/**
* Decrypts relative URI using secret key.
- * @param secretKey Key to decrypt with
+ * @param pathEncryptionSecretKey entity with keys for decrypt path
* @param bucketPath Path to decrypt
* @return Decrypted relative URI typically containing some sensitive information.
*/
- Uri decrypt(SecretKey secretKey, Uri bucketPath);
+ Uri decrypt(AuthPathEncryptionSecretKey pathEncryptionSecretKey, Uri bucketPath);
+
}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/BaseTypeString.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/BaseTypeString.java
index 904e47614..49ddf65a5 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/BaseTypeString.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/BaseTypeString.java
@@ -3,6 +3,7 @@
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
+import lombok.ToString;
import java.io.Serializable;
@@ -12,6 +13,7 @@
@Getter
@RequiredArgsConstructor
@EqualsAndHashCode
+@ToString
public class BaseTypeString implements Serializable {
private static final long serialVersionUID = 3569239558130703592L;
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/UserIDAuth.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/UserIDAuth.java
index 76ed14d20..93583ff4a 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/UserIDAuth.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/UserIDAuth.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.api.types;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@@ -16,9 +16,9 @@ public class UserIDAuth {
private final UserID userID;
private final ReadKeyPassword readKeyPassword;
- public UserIDAuth(String userID, String readKeyPassword) {
+ public UserIDAuth(String userID, ReadKeyPassword readKeyPassword) {
this.userID = new UserID(userID);
- this.readKeyPassword = new ReadKeyPassword(readKeyPassword);
+ this.readKeyPassword = readKeyPassword;
}
@Override
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/CmsEncryptionConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/CmsEncryptionConfig.java
new file mode 100644
index 000000000..fd0d1c3d3
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/CmsEncryptionConfig.java
@@ -0,0 +1,16 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * Configures document-body encryption algorithm.
+ * {@see de.adorsys.datasafe.encrypiton.impl.cmsencryption.ASNCmsEncryptionConfig} for values or override it.
+ */
+@Getter
+@Builder(toBuilder = true)
+public class CmsEncryptionConfig {
+
+ @Builder.Default
+ private final String algo = "AES256_GCM";
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/EncryptionConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/EncryptionConfig.java
new file mode 100644
index 000000000..02d8d956f
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/EncryptionConfig.java
@@ -0,0 +1,30 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * Full encryption configuration.
+ */
+@Getter
+@Builder(toBuilder = true)
+public class EncryptionConfig {
+
+ /**
+ * Which keystore to use and how to encrypt keys in it.
+ */
+ @Builder.Default
+ private final KeyStoreConfig keystore = KeyStoreConfig.builder().build();
+
+ /**
+ * Which keys to create in keystore.
+ */
+ @Builder.Default
+ private final KeyCreationConfig keys = KeyCreationConfig.builder().build();
+
+ /**
+ * How to encrypt documents.
+ */
+ @Builder.Default
+ private final CmsEncryptionConfig cms = CmsEncryptionConfig.builder().build();
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyCreationConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyCreationConfig.java
new file mode 100644
index 000000000..e483cd57b
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyCreationConfig.java
@@ -0,0 +1,70 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * Wrapper that contains count of public-key pairs and count of encryption keys.
+ */
+@Getter
+@Builder(toBuilder = true)
+public class KeyCreationConfig {
+
+ public static final String PATH_KEY_ID_PREFIX = "PATH_SECRET";
+ public static final String PATH_KEY_ID_PREFIX_CTR = "PATH_CTR_SECRET_";
+ public static final String DOCUMENT_KEY_ID_PREFIX = "PRIVATE_SECRET";
+
+ @Builder.Default
+ private final int encKeyNumber = 1;
+
+ @Builder.Default
+ private final int signKeyNumber = 1;
+
+ @Builder.Default
+ private final SecretKeyCreationCfg secret = SecretKeyCreationCfg.builder().build();
+
+ @Builder.Default
+ private final EncryptingKeyCreationCfg encrypting = EncryptingKeyCreationCfg.builder().build();
+
+ @Builder.Default
+ private final SigningKeyCreationCfg singing = SigningKeyCreationCfg.builder().build();
+
+ @Getter
+ @Builder
+ public static class SecretKeyCreationCfg {
+
+ @Builder.Default
+ private final String algo = "AES";
+
+ @Builder.Default
+ private final int size = 256;
+ }
+
+ @Getter
+ @Builder
+ public static class EncryptingKeyCreationCfg {
+
+ @Builder.Default
+ private final String algo = "RSA";
+
+ @Builder.Default
+ private final int size = 2048;
+
+ @Builder.Default
+ private final String sigAlgo = "SHA256withRSA";
+ }
+
+ @Getter
+ @Builder
+ public static class SigningKeyCreationCfg {
+
+ @Builder.Default
+ private final String algo = "RSA";
+
+ @Builder.Default
+ private final int size = 2048;
+
+ @Builder.Default
+ private final String sigAlgo = "SHA256withRSA";
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyStoreConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyStoreConfig.java
new file mode 100644
index 000000000..9dd80edc6
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/KeyStoreConfig.java
@@ -0,0 +1,76 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf.PBKDF2;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf.Scrypt;
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * Wrapper for keystore config.
+ */
+@Getter
+@Builder(toBuilder = true)
+public class KeyStoreConfig {
+
+ /**
+ * Which type of keystore to use i.e. BCFKS or UBER, etc.
+ */
+ @Builder.Default
+ private final String type = "BCFKS";
+
+ /**
+ * Keystore encryption algorithm (used both for keys and keystore). For BCFKS refer to for BCFKS refer to
+ * {@see org.bouncycastle.jcajce.BCFKSLoadStoreParameter}
+ */
+ @Builder.Default
+ private final String encryptionAlgo = "AES256_KWP";
+
+ /**
+ * Password key derivation configuration.
+ */
+ @Builder.Default
+ private final PBKDF pbkdf = PBKDF.builder().build();
+
+ /**
+ * KeyStore authentication algorithm, for BCFKS refer to {@see org.bouncycastle.jcajce.BCFKSLoadStoreParameter}
+ */
+ @Builder.Default
+ private final String macAlgo = "HmacSHA3_512";
+
+ /**
+ * Algorithm to use when encrypting password-like keys to be stored in keystore (i.e. storage credentials).
+ */
+ @Builder.Default
+ private final String passwordKeysAlgo = "PBEWithHmacSHA256AndAES_256";
+
+ /**
+ * Password key derivation configuration.
+ */
+ @Getter
+ public static class PBKDF {
+
+ /**
+ * This is non null if we should use PBKDF2 based routines.
+ */
+ private final PBKDF2 pbkdf2;
+
+ /**
+ * This is non null if we should use Scrypt-based routines.
+ */
+ private final Scrypt scrypt;
+
+ @Builder
+ public PBKDF(PBKDF2 pbkdf2, Scrypt scrypt) {
+ if (null != pbkdf2 && null != scrypt) {
+ throw new IllegalArgumentException("Ambiguous PBKDF - both scrypt and pbkdf2 are set");
+ }
+
+ if (null == pbkdf2 && null == scrypt) {
+ pbkdf2 = PBKDF2.builder().build();
+ }
+
+ this.pbkdf2 = pbkdf2;
+ this.scrypt = scrypt;
+ }
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfig.java
new file mode 100644
index 000000000..8e05dc762
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfig.java
@@ -0,0 +1,273 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf.PBKDF2;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf.Scrypt;
+import lombok.Data;
+
+/**
+ * This is a helper class to aid mapping between Spring ConfigurationProperties and actual
+ * {@link EncryptionConfig} because Spring Boot had started to support immutable fields from version 2.2 which
+ * is rather new to rely on now.
+ * See {@link EncryptionConfig} for defaults and details on fields.
+ */
+@Data
+public class MutableEncryptionConfig {
+
+ private MutableKeyStoreCreationConfig keystore;
+ private MutableKeyCreationConfig keys;
+ private MutableCmsEncryptionConfig cms;
+
+ @Data
+ public static class MutableCmsEncryptionConfig {
+
+ private String algo;
+
+ CmsEncryptionConfig toCmsEncryptionConfig() {
+ CmsEncryptionConfig.CmsEncryptionConfigBuilder builder = CmsEncryptionConfig.builder();
+ if (null != algo) {
+ builder.algo(algo);
+ }
+
+ return builder.build();
+ }
+ }
+
+ @Data
+ public static class MutableKeyStoreCreationConfig {
+
+ private String type;
+ private String encryptionAlgo;
+ private MutableKeyStoreCreationConfig.MutablePBKDF pbkdf;
+ private String macAlgo;
+ private String passwordKeysAlgo;
+
+ @Data
+ public static class MutablePBKDF {
+
+ private MutablePBKDF2 pbkdf2;
+ private MutableScrypt scrypt;
+
+ @Data
+ public static class MutablePBKDF2 {
+
+ private String algo;
+ private Integer saltLength;
+ private Integer iterCount;
+
+ PBKDF2 toPBKDF2() {
+ PBKDF2.PBKDF2Builder builder = PBKDF2.builder();
+ if (null != algo) {
+ builder.algo(algo);
+ }
+
+ if (null != saltLength) {
+ builder.saltLength(saltLength);
+ }
+
+ if (null != iterCount) {
+ builder.iterCount(iterCount);
+ }
+
+ return builder.build();
+ }
+ }
+
+ @Data
+ public static class MutableScrypt {
+
+ private Integer cost;
+ private Integer blockSize;
+ private Integer parallelization;
+ private Integer saltLength;
+
+ Scrypt toScrypt() {
+
+ Scrypt.ScryptBuilder builder = Scrypt.builder();
+
+ if (null != cost) {
+ builder.cost(cost);
+ }
+
+ if (null != blockSize) {
+ builder.blockSize(blockSize);
+ }
+
+ if (null != parallelization) {
+ builder.parallelization(parallelization);
+ }
+
+ if (null != saltLength) {
+ builder.saltLength(saltLength);
+ }
+
+ return builder.build();
+ }
+ }
+
+ KeyStoreConfig.PBKDF toPBKDF() {
+ KeyStoreConfig.PBKDF.PBKDFBuilder builder = KeyStoreConfig.PBKDF.builder();
+
+ if (null != pbkdf2) {
+ builder.pbkdf2(pbkdf2.toPBKDF2());
+ }
+
+ if (null != scrypt) {
+ builder.pbkdf2(null);
+ builder.scrypt(scrypt.toScrypt());
+ }
+
+ return builder.build();
+ }
+ }
+
+ KeyStoreConfig toKeyStoreConfig() {
+ KeyStoreConfig.KeyStoreConfigBuilder builder = KeyStoreConfig.builder();
+ if (null != type) {
+ builder.type(type);
+ }
+
+ if (null != encryptionAlgo) {
+ builder.encryptionAlgo(encryptionAlgo);
+ }
+
+ if (null != pbkdf) {
+ builder.pbkdf(pbkdf.toPBKDF());
+ }
+
+ if (null != macAlgo) {
+ builder.macAlgo(macAlgo);
+ }
+
+ if (null != passwordKeysAlgo) {
+ builder.passwordKeysAlgo(passwordKeysAlgo);
+ }
+
+ return builder.build();
+ }
+ }
+
+ @Data
+ public static class MutableKeyCreationConfig {
+
+ private Integer encKeyNumber;
+ private Integer signKeyNumber;
+ private MutableSecretKeyCreationCfg secret;
+ private MutableEncryptingKeyCreationCfg encrypting;
+ private MutableSigningKeyCreationCfg singing;
+
+ @Data
+ public static class MutableSecretKeyCreationCfg {
+
+ private String algo;
+ private Integer size;
+
+ KeyCreationConfig.SecretKeyCreationCfg toSecretKeyCreationCfg() {
+ KeyCreationConfig.SecretKeyCreationCfg.SecretKeyCreationCfgBuilder builder =
+ KeyCreationConfig.SecretKeyCreationCfg.builder();
+ if (null != algo) {
+ builder.algo(algo);
+ }
+
+ if (null != size) {
+ builder.size(size);
+ }
+
+ return builder.build();
+ }
+ }
+
+ @Data
+ public static class MutableEncryptingKeyCreationCfg {
+
+ private String algo;
+ private Integer size;
+ private String sigAlgo;
+
+ KeyCreationConfig.EncryptingKeyCreationCfg toEncryptingKeyCreationCfg() {
+ KeyCreationConfig.EncryptingKeyCreationCfg.EncryptingKeyCreationCfgBuilder builder =
+ KeyCreationConfig.EncryptingKeyCreationCfg.builder();
+ if (null != algo) {
+ builder.algo(algo);
+ }
+
+ if (null != size) {
+ builder.size(size);
+ }
+
+ if (null != sigAlgo) {
+ builder.sigAlgo(sigAlgo);
+ }
+
+ return builder.build();
+ }
+ }
+
+ @Data
+ public static class MutableSigningKeyCreationCfg {
+
+ private String algo;
+ private Integer size;
+ private String sigAlgo;
+
+ KeyCreationConfig.SigningKeyCreationCfg toSigningKeyCreationCfg() {
+ KeyCreationConfig.SigningKeyCreationCfg.SigningKeyCreationCfgBuilder builder =
+ KeyCreationConfig.SigningKeyCreationCfg.builder();
+ if (null != algo) {
+ builder.algo(algo);
+ }
+
+ if (null != size) {
+ builder.size(size);
+ }
+
+ if (null != sigAlgo) {
+ builder.sigAlgo(sigAlgo);
+ }
+
+ return builder.build();
+ }
+ }
+
+ KeyCreationConfig toKeyCreationConfig() {
+ KeyCreationConfig.KeyCreationConfigBuilder builder = KeyCreationConfig.builder();
+ if (null != encKeyNumber) {
+ builder.encKeyNumber(encKeyNumber);
+ }
+
+ if (null != signKeyNumber) {
+ builder.signKeyNumber(signKeyNumber);
+ }
+
+ if (null != secret) {
+ builder.secret(secret.toSecretKeyCreationCfg());
+ }
+
+ if (null != encrypting) {
+ builder.encrypting(encrypting.toEncryptingKeyCreationCfg());
+ }
+
+ if (null != singing) {
+ builder.singing(singing.toSigningKeyCreationCfg());
+ }
+
+ return builder.build();
+ }
+ }
+
+ public EncryptionConfig toEncryptionConfig() {
+ EncryptionConfig.EncryptionConfigBuilder builder = EncryptionConfig.builder();
+ if (null != keystore) {
+ builder.keystore(keystore.toKeyStoreConfig());
+ }
+
+ if (null != keys) {
+ builder.keys(keys.toKeyCreationConfig());
+ }
+
+ if (null != cms) {
+ builder.cms(cms.toCmsEncryptionConfig());
+ }
+
+ return builder.build();
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/AuthPathEncryptionSecretKey.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/AuthPathEncryptionSecretKey.java
new file mode 100644
index 000000000..3c6491c62
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/AuthPathEncryptionSecretKey.java
@@ -0,0 +1,19 @@
+package de.adorsys.datasafe.encrypiton.api.types.keystore;
+
+import lombok.*;
+
+/**
+ * Authenticated path encryption secret key holder.
+ */
+@Getter
+@ToString
+@Value
+@RequiredArgsConstructor
+public class AuthPathEncryptionSecretKey {
+
+ @NonNull
+ private final SecretKeyIDWithKey secretKey;
+
+ @NonNull
+ private final SecretKeyIDWithKey counterSecretKey;
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/BaseTypePasswordString.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/BaseTypePasswordString.java
deleted file mode 100644
index 409bbffc4..000000000
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/BaseTypePasswordString.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package de.adorsys.datasafe.encrypiton.api.types.keystore;
-
-import de.adorsys.datasafe.encrypiton.api.types.BaseTypeString;
-import de.adorsys.datasafe.types.api.utils.Obfuscate;
-
-/**
- * Wrapper for password sensitive data.
- */
-public class BaseTypePasswordString extends BaseTypeString {
-
- public BaseTypePasswordString(String value) {
- super(value);
- }
-
- @Override
- public String toString() {
- return "BaseTypePasswordString{" + Obfuscate.secureSensitive(getValue()) + "}";
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyEntry.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyEntry.java
index 2185ba00d..95da61ce1 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyEntry.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyEntry.java
@@ -1,5 +1,7 @@
package de.adorsys.datasafe.encrypiton.api.types.keystore;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+
/**
* Wrapper for key entry within keystore.
*/
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyID.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyID.java
index 9bbeaeac5..df60db9dc 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyID.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyID.java
@@ -1,10 +1,12 @@
package de.adorsys.datasafe.encrypiton.api.types.keystore;
import de.adorsys.datasafe.encrypiton.api.types.BaseTypeString;
+import lombok.ToString;
/**
* Wrapper that identifies key inside keystore.
*/
+@ToString(callSuper = true)
public class KeyID extends BaseTypeString {
public KeyID(String value) {
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreAuth.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreAuth.java
index 8884af204..463a34150 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreAuth.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreAuth.java
@@ -1,6 +1,8 @@
package de.adorsys.datasafe.encrypiton.api.types.keystore;
import de.adorsys.datasafe.encrypiton.api.types.keystore.exceptions.KeyStoreAuthException;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
/**
* Authorization entity to read keystore or both keystore and key in it.
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreCreationConfig.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreCreationConfig.java
deleted file mode 100644
index a078984b0..000000000
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreCreationConfig.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package de.adorsys.datasafe.encrypiton.api.types.keystore;
-
-import lombok.Getter;
-import lombok.RequiredArgsConstructor;
-
-/**
- * Wrapper that contains count of public-key pairs and count of encryption keys.
- */
-@Getter
-@RequiredArgsConstructor
-public class KeyStoreCreationConfig {
-
- public static final String PATH_KEY_ID_PREFIX = "PATH_SECRET";
- public static final String DOCUMENT_KEY_ID_PREFIX = "PRIVATE_SECRET";
-
- private final int encKeyNumber;
- private final int signKeyNumber;
-}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreType.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreType.java
deleted file mode 100644
index 0dfad747e..000000000
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/KeyStoreType.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package de.adorsys.datasafe.encrypiton.api.types.keystore;
-
-import de.adorsys.datasafe.encrypiton.api.types.BaseTypeString;
-
-/**
- * Wrapper for keystore type - example: PKCS12,JKS,UBER.
- */
-public class KeyStoreType extends BaseTypeString {
-
- public static KeyStoreType DEFAULT = getDefaultKeyStoreType();
-
- public KeyStoreType(String value) {
- super(value);
- }
-
- protected static KeyStoreType getDefaultKeyStoreType() {
- String serverKeystoreType = System.getProperty("SERVER_KEYSTORE_TYPE");
- if (null != serverKeystoreType && !serverKeystoreType.isEmpty()) {
- return new KeyStoreType(serverKeystoreType);
- }
- return new KeyStoreType("UBER");
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadKeyPassword.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadKeyPassword.java
deleted file mode 100644
index bc5dc7c3d..000000000
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadKeyPassword.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package de.adorsys.datasafe.encrypiton.api.types.keystore;
-
-/**
- * Wrapper for password for reading secret or private key entry.
- */
-public class ReadKeyPassword extends BaseTypePasswordString {
-
- public ReadKeyPassword(String readKeyPassword) {
- super(readKeyPassword);
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadStorePassword.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadStorePassword.java
deleted file mode 100644
index c721bb8a7..000000000
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/ReadStorePassword.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package de.adorsys.datasafe.encrypiton.api.types.keystore;
-
-/**
- * Wrapper for keystore serialization/deserialization password as well as password for reading public keys.
- */
-public class ReadStorePassword extends BaseTypePasswordString {
-
- public ReadStorePassword(String readStorePassword) {
- super(readStorePassword);
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyGenerator.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyGenerator.java
index c9c41dfb1..8cc874253 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyGenerator.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyGenerator.java
@@ -1,6 +1,8 @@
package de.adorsys.datasafe.encrypiton.api.types.keystore;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+
/**
* Generates random secret key entry.
*/
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyIDWithKey.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyIDWithKey.java
index 66f205c18..eea75af71 100644
--- a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyIDWithKey.java
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/SecretKeyIDWithKey.java
@@ -10,7 +10,7 @@
* Wrapper for secret key and its ID, so it can be found by ID within keystore.
*/
@Getter
-@ToString
+@ToString(of = "keyID")
@RequiredArgsConstructor
public class SecretKeyIDWithKey {
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/PBKDF2.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/PBKDF2.java
new file mode 100644
index 000000000..5df02f214
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/PBKDF2.java
@@ -0,0 +1,30 @@
+package de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf;
+
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * PBKDF2-based key derivation.
+ */
+@Getter
+@Builder
+public class PBKDF2 {
+
+ /**
+ * Password derivation algorithm, for BCFKS refer to {@see org.bouncycastle.crypto.util.PBKDF2Config}
+ */
+ @Builder.Default
+ private final String algo = "PRF_SHA512";
+
+ /**
+ * Password derivation salt length, for BCFKS refer to {@see org.bouncycastle.crypto.util.PBKDF2Config}
+ */
+ @Builder.Default
+ private final int saltLength = 32;
+
+ /**
+ * Password derivation iteration count, for BCFKS refer to {@see org.bouncycastle.crypto.util.PBKDF2Config}
+ */
+ @Builder.Default
+ private final int iterCount = 20480;
+}
diff --git a/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/Scrypt.java b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/Scrypt.java
new file mode 100644
index 000000000..e4d80c623
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-api/src/main/java/de/adorsys/datasafe/encrypiton/api/types/keystore/pbkdf/Scrypt.java
@@ -0,0 +1,31 @@
+package de.adorsys.datasafe.encrypiton.api.types.keystore.pbkdf;
+
+import lombok.Builder;
+import lombok.Getter;
+
+/**
+ * Scrypt-based key derivation.
+ */
+@Getter
+@Builder
+public class Scrypt {
+
+ /**
+ * Password derivation cost, for BCFKS refer to {@see org.bouncycastle.crypto.util.ScryptConfig}
+ */
+ private final int cost;
+ /**
+ * Password derivation block size, for BCFKS refer to {@see org.bouncycastle.crypto.util.ScryptConfig}
+ */
+ private final int blockSize;
+
+ /**
+ * Password derivation parallelization, for BCFKS refer to {@see org.bouncycastle.crypto.util.ScryptConfig}
+ */
+ private final int parallelization;
+
+ /**
+ * Password derivation salt length, for BCFKS refer to {@see org.bouncycastle.crypto.util.ScryptConfig}
+ */
+ private final int saltLength;
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/pom.xml b/datasafe-encryption/datasafe-encryption-impl/pom.xml
index 51cd4dbf7..462faff1d 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.6.2
+ 0.7.0
datasafe-encryption-impl
@@ -29,6 +29,12 @@
datasafe-directory-api
${project.version}
+
+ de.adorsys
+ datasafe-runtime-delegate
+ ${project.version}
+ provided
+
org.projectlombok
@@ -58,23 +64,27 @@
org.slf4j
slf4j-api
-
- de.adorsys
- datasafe-runtime-delegate
- ${project.version}
- provided
-
com.google.code.findbugs
jsr305
provided
+
+ org.cryptomator
+ siv-mode
+
org.junit.jupiter
junit-jupiter-api
test
+
+ org.junit.jupiter
+ junit-jupiter-params
+ ${jupiter.version}
+ test
+
org.assertj
assertj-core
@@ -92,5 +102,24 @@
test-jar
test
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ ${jackson.version}
+ test
+
+
+ com.fasterxml.jackson.dataformat
+ jackson-dataformat-yaml
+ ${jackson.version}
+ test
+
+
+ com.fasterxml.jackson.core
+ jackson-annotations
+ ${jackson.version}
+ test
+
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/ASNCmsEncryptionConfig.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/ASNCmsEncryptionConfig.java
new file mode 100644
index 000000000..1127a3d6e
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/ASNCmsEncryptionConfig.java
@@ -0,0 +1,54 @@
+package de.adorsys.datasafe.encrypiton.impl.cmsencryption;
+
+import com.google.common.collect.ImmutableMap;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.CmsEncryptionConfig;
+import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
+import lombok.Getter;
+import org.bouncycastle.asn1.ASN1ObjectIdentifier;
+import org.bouncycastle.asn1.nist.NISTObjectIdentifiers;
+import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
+
+import javax.inject.Inject;
+import java.util.Map;
+
+/**
+ * Provides algorithm ID used for CMS-encryption.
+ */
+@RuntimeDelegate
+public class ASNCmsEncryptionConfig {
+
+ /**
+ * These are recommended mappings, one can override this static map by RuntimeDelegate to
+ * ASNCmsEncryptionConfig.
+ */
+ private static final Map MAPPINGS =
+ ImmutableMap.builder()
+ .put("AES128_CBC", NISTObjectIdentifiers.id_aes128_CBC)
+ .put("AES192_CBC", NISTObjectIdentifiers.id_aes192_CBC)
+ .put("AES256_CBC", NISTObjectIdentifiers.id_aes256_CBC)
+ .put("AES128_CCM", NISTObjectIdentifiers.id_aes128_CCM)
+ .put("AES192_CCM", NISTObjectIdentifiers.id_aes192_CCM)
+ .put("AES256_CCM", NISTObjectIdentifiers.id_aes256_CCM)
+ .put("AES128_GCM", NISTObjectIdentifiers.id_aes128_GCM)
+ .put("AES192_GCM", NISTObjectIdentifiers.id_aes192_GCM)
+ .put("AES256_GCM", NISTObjectIdentifiers.id_aes256_GCM)
+ .put("AES128_WRAP", NISTObjectIdentifiers.id_aes128_wrap)
+ .put("AES192_WRAP", NISTObjectIdentifiers.id_aes192_wrap)
+ .put("AES256_WRAP", NISTObjectIdentifiers.id_aes256_wrap)
+ .put("CHACHA20_POLY1305", PKCSObjectIdentifiers.id_alg_AEADChaCha20Poly1305)
+ .build();
+
+ @Getter
+ private final ASN1ObjectIdentifier algorithm;
+
+ @Inject
+ public ASNCmsEncryptionConfig(CmsEncryptionConfig cmsEncryptionConfig) {
+ String algo = cmsEncryptionConfig.getAlgo();
+
+ if (!MAPPINGS.containsKey(algo)) {
+ throw new IllegalArgumentException("Unknown ASN1 mapping for algo: " + algo);
+ }
+
+ algorithm = MAPPINGS.get(algo);
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionConfig.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionConfig.java
deleted file mode 100644
index aae98f2ac..000000000
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CMSEncryptionConfig.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package de.adorsys.datasafe.encrypiton.impl.cmsencryption;
-
-import org.bouncycastle.asn1.ASN1ObjectIdentifier;
-
-/**
- * Provides algorithm ID used for CMS-encryption.
- */
-public interface CMSEncryptionConfig {
-
- /**
- * BouncyCastle compatible algorithm identifier.
- */
- ASN1ObjectIdentifier getAlgorithm();
-}
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 985524817..b7b73cbf6 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
@@ -6,6 +6,7 @@
import de.adorsys.datasafe.encrypiton.impl.cmsencryption.decryptors.Decryptor;
import de.adorsys.datasafe.encrypiton.impl.cmsencryption.decryptors.DecryptorFactory;
import de.adorsys.datasafe.encrypiton.impl.cmsencryption.exceptions.DecryptionException;
+import de.adorsys.datasafe.encrypiton.impl.keystore.generator.ProviderUtils;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
@@ -14,7 +15,6 @@
import org.bouncycastle.cms.jcajce.JceCMSContentEncryptorBuilder;
import org.bouncycastle.cms.jcajce.JceKEKRecipientInfoGenerator;
import org.bouncycastle.cms.jcajce.JceKeyTransRecipientInfoGenerator;
-import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.SecretKey;
import javax.inject.Inject;
@@ -38,15 +38,15 @@
@RuntimeDelegate
public class CMSEncryptionServiceImpl implements CMSEncryptionService {
- private CMSEncryptionConfig encryptionConfig;
+ private ASNCmsEncryptionConfig encryptionConfig;
@Inject
- public CMSEncryptionServiceImpl(CMSEncryptionConfig encryptionConfig) {
+ public CMSEncryptionServiceImpl(ASNCmsEncryptionConfig encryptionConfig) {
this.encryptionConfig = encryptionConfig;
}
/**
- * Asymmetrical encryption-based stream, algorithm is provided by {@link CMSEncryptionConfig#getAlgorithm()}
+ * Asymmetrical encryption-based stream, algorithm is provided by {@link ASNCmsEncryptionConfig#getAlgorithm()}
* Uses {@link RecipientId#keyTrans} recipient id.
*/
@Override
@@ -65,7 +65,7 @@ public OutputStream buildEncryptionOutputStream(OutputStream dataContentStream,
}
/**
- * Symmetrical encryption-based stream, algorithm is provided by {@link CMSEncryptionConfig#getAlgorithm()}
+ * Symmetrical encryption-based stream, algorithm is provided by {@link ASNCmsEncryptionConfig#getAlgorithm()}
* Uses {@link RecipientId#kek} recipient id.
*/
@Override
@@ -119,7 +119,7 @@ private OutputStream streamEncrypt(OutputStream dataContentStream, Set> secretKeys
) {
- this.config = new KeyStoreCreationConfigImpl(config);
- this.keyStoreType = keyStoreType;
+ this.config = new KeyCreationConfigImpl(keyCreationConfig);
+ this.keyStoreConfig = keyStoreConfig;
this.serverKeyPairAliasPrefix = "KEYSTORE-ID-0";
this.readKeyPassword = readKeyPassword;
this.secretKeys = secretKeys;
@@ -62,7 +67,7 @@ public KeyStore generate() {
Date startTime = new Date();
try {
String keyStoreID = serverKeyPairAliasPrefix;
- KeystoreBuilder keystoreBuilder = new KeystoreBuilder().withStoreType(keyStoreType);
+ KeystoreBuilder keystoreBuilder = new KeystoreBuilder().withKeyStoreConfig(keyStoreConfig);
{
KeyPairGenerator encKeyPairGenerator = config.getEncKeyPairGenerator(keyStoreID);
@@ -89,7 +94,7 @@ public KeyStore generate() {
}
}
{
- SecretKeyGenerator secretKeyGenerator = config.getSecretKeyGenerator(keyStoreID);
+ SecretKeyGenerator secretKeyGenerator = config.getSecretKeyGenerator();
for (Map.Entry> keyEntry : secretKeys.entrySet()) {
keystoreBuilder = buildSecretKey(
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceImpl.java
index 0b8ff18b5..e67c6389e 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceImpl.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceImpl.java
@@ -2,10 +2,13 @@
import com.google.common.collect.ImmutableMap;
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyStoreConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
import de.adorsys.datasafe.encrypiton.impl.keystore.generator.KeyStoreServiceImplBaseFunctions;
-import de.adorsys.datasafe.encrypiton.impl.keystore.types.PasswordBasedKeyConfig;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
@@ -17,35 +20,34 @@
import java.security.Key;
import java.security.KeyStore;
import java.security.PrivateKey;
-import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.util.*;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.DOCUMENT_KEY_ID_PREFIX;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.PATH_KEY_ID_PREFIX;
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.*;
@Slf4j
@RuntimeDelegate
public class KeyStoreServiceImpl implements KeyStoreService {
- private final PasswordBasedKeyConfig passwordBasedKeyConfig;
+ private final KeyStoreConfig config;
+ private final String passwordStoreEncAlgo;
@Inject
- public KeyStoreServiceImpl(PasswordBasedKeyConfig passwordBasedKeyConfig) {
- this.passwordBasedKeyConfig = passwordBasedKeyConfig;
+ public KeyStoreServiceImpl(KeyStoreConfig config) {
+ this.config = config;
+ this.passwordStoreEncAlgo = this.config.getPasswordKeysAlgo();
}
@Override
public KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
- KeyStoreType keyStoreType,
- KeyStoreCreationConfig config) {
+ KeyCreationConfig config) {
return createKeyStore(
keyStoreAuth,
- keyStoreType,
config,
ImmutableMap.of(
new KeyID(PATH_KEY_ID_PREFIX + UUID.randomUUID().toString()), Optional.empty(),
+ new KeyID(PATH_KEY_ID_PREFIX_CTR + UUID.randomUUID().toString()), Optional.empty(),
new KeyID(DOCUMENT_KEY_ID_PREFIX + UUID.randomUUID().toString()), Optional.empty()
)
);
@@ -53,20 +55,16 @@ public KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
@Override
public KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
- KeyStoreType keyStoreType,
- KeyStoreCreationConfig config,
+ KeyCreationConfig keyConfig,
Map> secretKeys) {
log.debug("start create keystore ");
- if (config == null) {
- config = new KeyStoreCreationConfig(5, 5);
- }
// TODO, hier also statt der StoreID nun das
String serverKeyPairAliasPrefix = UUID.randomUUID().toString();
log.debug("keystoreid = {}", serverKeyPairAliasPrefix);
KeyStoreGenerator keyStoreGenerator = KeyStoreGenerator.builder()
- .config(config)
- .keyStoreType(keyStoreType)
+ .keyCreationConfig(keyConfig)
+ .keyStoreConfig(config)
.serverKeyPairAliasPrefix(serverKeyPairAliasPrefix)
.readKeyPassword(keyStoreAuth.getReadKeyPassword())
.secretKeys(secretKeys)
@@ -82,17 +80,16 @@ public KeyStore createKeyStore(KeyStoreAuth keyStoreAuth,
public KeyStore updateKeyStoreReadKeyPassword(KeyStore current,
KeyStoreAuth currentCredentials,
KeyStoreAuth newCredentials) {
- KeyStore newKeystore = KeyStore.getInstance(current.getType());
- newKeystore.load(null, null);
+ KeyStore newKeystore = KeyStoreServiceImplBaseFunctions.newKeyStore(config);
Enumeration aliases = current.aliases();
while (aliases.hasMoreElements()) {
String alias = aliases.nextElement();
- Key currentKey = current.getKey(alias, currentCredentials.getReadKeyPassword().getValue().toCharArray());
+ Key currentKey = current.getKey(alias, currentCredentials.getReadKeyPassword().getValue());
newKeystore.setKeyEntry(
alias,
currentKey,
- newCredentials.getReadKeyPassword().getValue().toCharArray(),
+ newCredentials.getReadKeyPassword().getValue(),
current.getCertificateChain(alias)
);
}
@@ -126,7 +123,7 @@ public PrivateKey getPrivateKey(KeyStoreAccess keyStoreAccess, KeyID keyID) {
ReadKeyPassword readKeyPassword = keyStoreAccess.getKeyStoreAuth().getReadKeyPassword();
KeyStore keyStore = keyStoreAccess.getKeyStore();
PrivateKey privateKey;
- privateKey = (PrivateKey) keyStore.getKey(keyID.getValue(), readKeyPassword.getValue().toCharArray());
+ privateKey = (PrivateKey) keyStore.getKey(keyID.getValue(), readKeyPassword.getValue());
return privateKey;
}
@@ -134,7 +131,7 @@ public PrivateKey getPrivateKey(KeyStoreAccess keyStoreAccess, KeyID keyID) {
@SneakyThrows
public SecretKeySpec getSecretKey(KeyStoreAccess keyStoreAccess, KeyID keyID) {
KeyStore keyStore = keyStoreAccess.getKeyStore();
- char[] password = keyStoreAccess.getKeyStoreAuth().getReadKeyPassword().getValue().toCharArray();
+ char[] password = keyStoreAccess.getKeyStoreAuth().getReadKeyPassword().getValue();
return (SecretKeySpec) keyStore.getKey(keyID.getValue(), password);
}
@@ -142,14 +139,14 @@ public SecretKeySpec getSecretKey(KeyStoreAccess keyStoreAccess, KeyID keyID) {
@SneakyThrows
public void addPasswordBasedSecretKey(KeyStoreAccess keyStoreAccess, String alias, char[] secret) {
PBEKeySpec pbeKeySpec = new PBEKeySpec(secret);
- SecretKeyFactory keyFac = SecretKeyFactory.getInstance(passwordBasedKeyConfig.secretKeyFactoryId());
+ SecretKeyFactory keyFac = SecretKeyFactory.getInstance(passwordStoreEncAlgo);
SecretKey key = keyFac.generateSecret(pbeKeySpec);
keyStoreAccess.getKeyStore()
.setKeyEntry(
alias,
key,
- keyStoreAccess.getKeyStoreAuth().getReadKeyPassword().getValue().toCharArray(),
- new Certificate[0]
+ keyStoreAccess.getKeyStoreAuth().getReadKeyPassword().getValue(),
+ null
);
}
@@ -173,7 +170,7 @@ public KeyStore deserialize(byte[] payload, String storeId, ReadStorePassword re
return KeyStoreServiceImplBaseFunctions.loadKeyStore(
payload,
storeId,
- KeyStoreType.DEFAULT,
+ config,
readStorePassword
);
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/PublicKeySerdeImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/PublicKeySerdeImpl.java
index 4b074b5e2..c64e3fe9f 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/PublicKeySerdeImpl.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/PublicKeySerdeImpl.java
@@ -3,12 +3,10 @@
import de.adorsys.datasafe.encrypiton.api.keystore.PublicKeySerde;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import lombok.SneakyThrows;
+import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
+import org.bouncycastle.jcajce.provider.asymmetric.rsa.KeyFactorySpi;
import javax.inject.Inject;
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.ObjectInputStream;
-import java.io.ObjectOutputStream;
import java.security.PublicKey;
import java.util.Base64;
@@ -18,6 +16,7 @@
@RuntimeDelegate
public class PublicKeySerdeImpl implements PublicKeySerde {
+
@Inject
public PublicKeySerdeImpl() {
}
@@ -25,19 +24,15 @@ public PublicKeySerdeImpl() {
@Override
@SneakyThrows
public PublicKey readPubKey(String encoded) {
- try (ObjectInputStream ois =
- new ObjectInputStream(new ByteArrayInputStream(Base64.getDecoder().decode(encoded)))) {
- return (PublicKey) ois.readObject();
- }
+ // FIXME: Legacy stuff
+ byte[] bytes = Base64.getDecoder().decode(encoded);
+ return new KeyFactorySpi().generatePublic(SubjectPublicKeyInfo.getInstance(bytes));
}
@Override
@SneakyThrows
public String writePubKey(PublicKey publicKey) {
- ByteArrayOutputStream bos = new ByteArrayOutputStream();
- try (ObjectOutputStream oos = new ObjectOutputStream(bos)) {
- oos.writeObject(publicKey);
- return new String(Base64.getEncoder().encode(bos.toByteArray()));
- }
+ // FIXME: Legacy stuff
+ return Base64.getEncoder().encodeToString(publicKey.getEncoded());
}
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/CaSignedCertificateBuilder.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/CaSignedCertificateBuilder.java
index 7b509f600..1adedf2a2 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/CaSignedCertificateBuilder.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/CaSignedCertificateBuilder.java
@@ -16,7 +16,6 @@
import java.math.BigInteger;
import java.security.PrivateKey;
import java.security.PublicKey;
-import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -36,8 +35,6 @@ public class CaSignedCertificateBuilder {
private X500Name subjectDN;
- private boolean subjectOnlyInAlternativeName;
-
private Integer notAfterInDays;
private Integer notBeforeInDays = 0;
@@ -55,15 +52,7 @@ public X509CertificateHolder build(PrivateKey issuerPrivatekey) {
if (dirty) throw new IllegalStateException("Builder can not be reused");
dirty = true;
- // AUtoselect algorithm
- if (StringUtils.isBlank(signatureAlgo)) {
- String algorithm = issuerPrivatekey.getAlgorithm();
- if (StringUtils.equalsAnyIgnoreCase("DSA", algorithm)) {
- signatureAlgo = "SHA256withDSA";
- } else if (StringUtils.equals("RSA", algorithm)) {
- signatureAlgo = "SHA256WithRSA";
- }
- }
+ signatureAlgo = autodetectAlgorithm(issuerPrivatekey);
Date now = new Date();
Date notAfter = notAfterInDays != null ? DateUtils.addDays(now, notAfterInDays) : null;
@@ -77,7 +66,10 @@ public X509CertificateHolder build(PrivateKey issuerPrivatekey) {
.build();
List errorKeys = BatchValidator.filterNull(notNullCheckList);
- if (errorKeys == null) errorKeys = new ArrayList<>();
+
+ if (errorKeys != null && !errorKeys.isEmpty()) {
+ throw new IllegalArgumentException("Fields can not be null: " + errorKeys);
+ }
X500Name issuerDN = null;
BasicConstraints basicConstraints = null;
@@ -86,8 +78,6 @@ public X509CertificateHolder build(PrivateKey issuerPrivatekey) {
if (createCaCert) {
// self signed ca certificate
basicConstraints = new BasicConstraints(true);
- // in ca case, subject must subject must be set
- subjectOnlyInAlternativeName = false;
} else {
// not a ca certificate
basicConstraints = new BasicConstraints(false);
@@ -95,11 +85,7 @@ public X509CertificateHolder build(PrivateKey issuerPrivatekey) {
BigInteger serial = SerialNumberGenerator.uniqueSerial();
- X509v3CertificateBuilder v3CertGen = null;
-
- if (!errorKeys.isEmpty()) {
- throw new IllegalArgumentException("Fields can not be null: " + errorKeys);
- }
+ X509v3CertificateBuilder v3CertGen;
v3CertGen = new JcaX509v3CertificateBuilder(issuerDN, serial, notBefore, notAfter, subjectDN, subjectPublicKey);
JcaX509ExtensionUtils extUtils = V3CertificateUtils.getJcaX509ExtensionUtils();
@@ -123,6 +109,19 @@ public X509CertificateHolder build(PrivateKey issuerPrivatekey) {
}
+ private String autodetectAlgorithm(PrivateKey issuerPrivatekey) {
+ if (null == signatureAlgo || signatureAlgo.isEmpty()) {
+ String algorithm = issuerPrivatekey.getAlgorithm();
+ if (StringUtils.equalsAnyIgnoreCase("DSA", algorithm)) {
+ return "SHA256withDSA";
+ } else if (StringUtils.equals("RSA", algorithm)) {
+ return "SHA256WithRSA";
+ }
+ }
+
+ return null;
+ }
+
public CaSignedCertificateBuilder withCa(boolean ca) {
this.createCaCert = ca;
return this;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyCreationConfigImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyCreationConfigImpl.java
new file mode 100644
index 000000000..7fc4d3be3
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyCreationConfigImpl.java
@@ -0,0 +1,43 @@
+package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
+
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
+
+/**
+ * Created by peter on 09.01.18.
+ */
+public class KeyCreationConfigImpl {
+ private final KeyCreationConfig config;
+
+ public KeyCreationConfigImpl(KeyCreationConfig config) {
+ this.config = config;
+ }
+
+ public KeyPairGeneratorImpl getEncKeyPairGenerator(String keyPrefix) {
+ return new KeyPairGeneratorImpl(
+ config.getEncrypting().getAlgo(),
+ config.getEncrypting().getSize(),
+ config.getEncrypting().getSigAlgo(),
+ "enc-" + keyPrefix
+ );
+ }
+
+ public KeyPairGeneratorImpl getSignKeyPairGenerator(String keyPrefix) {
+ return new KeyPairGeneratorImpl(
+ config.getSinging().getAlgo(),
+ config.getSinging().getSize(),
+ config.getSinging().getSigAlgo(),
+ "sign-" + keyPrefix
+ );
+ }
+
+ public SecretKeyGeneratorImpl getSecretKeyGenerator() {
+ return new SecretKeyGeneratorImpl(config.getSecret().getAlgo(), config.getSecret().getSize());
+ }
+
+ public int getEncKeyNumber() {
+ return config.getEncKeyNumber();
+ }
+ public int getSignKeyNumber() {
+ return config.getSignKeyNumber();
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyEntryData.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyEntryData.java
index cee466edb..312981d78 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyEntryData.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyEntryData.java
@@ -1,7 +1,7 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyEntry;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import lombok.AllArgsConstructor;
import lombok.Getter;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairData.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairData.java
index 68dc53997..6995df4b2 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairData.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairData.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.KeyPairEntry;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.SelfSignedKeyPairData;
import lombok.Builder;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairGeneratorImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairGeneratorImpl.java
index 43f8c5659..d7db80dc1 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairGeneratorImpl.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyPairGeneratorImpl.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.KeyPairGenerator;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.SelfSignedKeyPairData;
import org.bouncycastle.asn1.x500.X500Name;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreCreationConfigImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreCreationConfigImpl.java
deleted file mode 100644
index 31f4934b1..000000000
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreCreationConfigImpl.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-
-import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig;
-
-/**
- * Created by peter on 09.01.18.
- */
-public class KeyStoreCreationConfigImpl {
- private final KeyStoreCreationConfig config;
-
- public KeyStoreCreationConfigImpl(KeyStoreCreationConfig config) {
- this.config = config;
- }
-
- public KeyPairGeneratorImpl getEncKeyPairGenerator(String keyPrefix) {
- return new KeyPairGeneratorImpl("RSA", 2048, "SHA256withRSA", "enc-" + keyPrefix);
- }
-
- public KeyPairGeneratorImpl getSignKeyPairGenerator(String keyPrefix) {
- return new KeyPairGeneratorImpl("RSA", 2048, "SHA256withRSA", "sign-" + keyPrefix);
- }
-
- public SecretKeyGeneratorImpl getSecretKeyGenerator(String keyPrefix) {
- return new SecretKeyGeneratorImpl("AES", 256);
- }
-
- public int getEncKeyNumber() {
- return config.getEncKeyNumber();
- }
- public int getSignKeyNumber() {
- return config.getSignKeyNumber();
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreServiceImplBaseFunctions.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreServiceImplBaseFunctions.java
index b3a91bd9f..b5a9e0f1c 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreServiceImplBaseFunctions.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeyStoreServiceImplBaseFunctions.java
@@ -1,9 +1,18 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyEntry;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyEntry;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyStoreConfig;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.KeyPairEntry;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import lombok.SneakyThrows;
+import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.cert.X509CertificateHolder;
+import org.bouncycastle.crypto.util.PBKDF2Config;
+import org.bouncycastle.crypto.util.PBKDFConfig;
+import org.bouncycastle.crypto.util.ScryptConfig;
+import org.bouncycastle.jcajce.BCFKSLoadStoreParameter;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
@@ -29,13 +38,18 @@ private KeyStoreServiceImplBaseFunctions() {
/**
* Create an initializes a new key store. The key store is not yet password protected.
*
- * @param keyStoreType storeType
+ * @param config storeType
* @return KeyStore keyStore
*/
@SneakyThrows
- public static KeyStore newKeyStore(KeyStoreType keyStoreType) {
- KeyStore ks = KeyStore.getInstance(keyStoreType.getValue());
- ks.load(null, null);
+ public static KeyStore newKeyStore(KeyStoreConfig config) {
+ KeyStore ks = KeyStore.getInstance(config.getType());
+
+ if ("BCFKS".equals(config.getType())) {
+ createBCFKSKeystore(config, ks);
+ } else {
+ ks.load(null, null);
+ }
return ks;
}
@@ -43,13 +57,12 @@ public static KeyStore newKeyStore(KeyStoreType keyStoreType) {
* Write this key store into a byte array
*
* @param keystore keystore
- * @param storeId storeId
* @return key store byte array
*/
@SneakyThrows
public static byte[] toByteArray(KeyStore keystore, String storeId, ReadStorePassword readStorePassword) {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
- keystore.store(stream, readStorePassword.getValue().toCharArray());
+ keystore.store(stream, readStorePassword.getValue());
return stream.toByteArray();
}
@@ -57,29 +70,28 @@ public static byte[] toByteArray(KeyStore keystore, String storeId, ReadStorePas
* Loads a key store. Given the store bytes, the store type
*
* @param in : the inputStream location which to read the keystore
- * @param storeId : The store id. This is passed to the callback handler to identify the requested password record.
- * @param storeType : the type of this key store. f null, the defaut java keystore type is used.
+ * @param keyStoreConfig : the type of this key store. f null, the defaut java keystore type is used.
* @return KeyStore
*/
@SneakyThrows
- public static KeyStore loadKeyStore(InputStream in, String storeId, KeyStoreType storeType, ReadStorePassword readStorePassword) {
- // Use default type if blank.
- if (storeType == null) storeType = KeyStoreType.DEFAULT;
-
- KeyStore ks = KeyStore.getInstance(storeType.getValue());
+ public static KeyStore loadKeyStore(InputStream in, String storeId,
+ KeyStoreConfig keyStoreConfig,
+ ReadStorePassword readStorePassword) {
+ KeyStore ks = KeyStore.getInstance(keyStoreConfig.getType());
- ks.load(in, readStorePassword.getValue().toCharArray());
+ ks.load(in, readStorePassword.getValue());
return ks;
}
/**
* @param data : the byte array containing key store data.
- * @param storeId : The store id. This is passed to the callback handler to identify the requested password record.
- * @param keyStoreType : the type of this key store. f null, the defaut java keystore type is used.
+ * @param keyStoreConfig : the type of this key store. f null, the defaut java keystore type is used.
* @return KeyStore
*/
- public static KeyStore loadKeyStore(byte[] data, String storeId, KeyStoreType keyStoreType, ReadStorePassword readStorePassword) {
- return loadKeyStore(new ByteArrayInputStream(data), storeId, keyStoreType, readStorePassword);
+ public static KeyStore loadKeyStore(byte[] data, String storeId,
+ KeyStoreConfig keyStoreConfig,
+ ReadStorePassword readStorePassword) {
+ return loadKeyStore(new ByteArrayInputStream(data), storeId, keyStoreConfig, readStorePassword);
}
/**
@@ -108,6 +120,49 @@ public static void addToKeyStore(final KeyStore ks, KeyEntry keyEntry) {
}
}
+ @SneakyThrows
+ private static void createBCFKSKeystore(KeyStoreConfig config, KeyStore ks) {
+ BCFKSLoadStoreParameter.EncryptionAlgorithm encAlgo =
+ BCFKSLoadStoreParameter.EncryptionAlgorithm.valueOf(config.getEncryptionAlgo());
+
+ BCFKSLoadStoreParameter.MacAlgorithm macAlgo =
+ BCFKSLoadStoreParameter.MacAlgorithm.valueOf(config.getMacAlgo());
+
+ ks.load(new BCFKSLoadStoreParameter.Builder()
+ .withStoreEncryptionAlgorithm(encAlgo)
+ .withStorePBKDFConfig(pbkdfConfig(config.getPbkdf()))
+ .withStoreMacAlgorithm(macAlgo)
+ .build()
+ );
+ }
+
+ @SneakyThrows
+ private static PBKDFConfig pbkdfConfig(KeyStoreConfig.PBKDF config) {
+ if (null != config.getPbkdf2()) {
+ AlgorithmIdentifier prf = (AlgorithmIdentifier) PBKDF2Config.class.getDeclaredField(
+ config.getPbkdf2().getAlgo()
+ ).get(PBKDF2Config.class);
+
+ return new PBKDF2Config.Builder()
+ .withIterationCount(config.getPbkdf2().getIterCount())
+ .withSaltLength(config.getPbkdf2().getSaltLength())
+ .withPRF(prf)
+ .build();
+
+ } else if (config.getScrypt() != null) {
+
+ return new ScryptConfig.Builder(
+ config.getScrypt().getCost(),
+ config.getScrypt().getBlockSize(),
+ config.getScrypt().getParallelization()
+ )
+ .withSaltLength(config.getScrypt().getSaltLength())
+ .build();
+ }
+
+ throw new IllegalArgumentException("Unknown PBKDF type");
+ }
+
@SneakyThrows
private static void addToKeyStore(final KeyStore ks, KeyPairEntry keyPairHolder) {
List chainList = new ArrayList<>();
@@ -115,7 +170,7 @@ private static void addToKeyStore(final KeyStore ks, KeyPairEntry keyPairHolder)
chainList.add(V3CertificateUtils.getX509JavaCertificate(subjectCert));
Certificate[] chain = chainList.toArray(new Certificate[chainList.size()]);
ks.setKeyEntry(keyPairHolder.getAlias(), keyPairHolder.getKeyPair().getKeyPair().getPrivate(),
- keyPairHolder.getReadKeyPassword().getValue().toCharArray(), chain);
+ keyPairHolder.getReadKeyPassword().getValue(), chain);
}
@SneakyThrows
@@ -126,7 +181,7 @@ public static void addToKeyStore(final KeyStore ks, SecretKeyEntry secretKeyData
}
private static ProtectionParameter getPasswordProtectionParameter(ReadKeyPassword readKeyPassword) {
- return new KeyStore.PasswordProtection(readKeyPassword.getValue().toCharArray());
+ return new KeyStore.PasswordProtection(readKeyPassword.getValue());
}
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeystoreBuilder.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeystoreBuilder.java
index 3115b6a7f..e96ea4323 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeystoreBuilder.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/KeystoreBuilder.java
@@ -1,18 +1,18 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyEntry;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreType;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyStoreConfig;
import java.security.KeyStore;
import java.util.HashMap;
import java.util.Map;
public class KeystoreBuilder {
- private KeyStoreType storeType;
+ private KeyStoreConfig keyStoreConfig;
private Map keyEntries = new HashMap<>();
- public KeystoreBuilder withStoreType(KeyStoreType storeType) {
- this.storeType = storeType;
+ public KeystoreBuilder withKeyStoreConfig(KeyStoreConfig keyStoreConfig) {
+ this.keyStoreConfig = keyStoreConfig;
return this;
}
@@ -22,7 +22,7 @@ public KeystoreBuilder withKeyEntry(KeyEntry keyEntry) {
}
public KeyStore build() {
- KeyStore ks = KeyStoreServiceImplBaseFunctions.newKeyStore(storeType);
+ KeyStore ks = KeyStoreServiceImplBaseFunctions.newKeyStore(keyStoreConfig);
KeyStoreServiceImplBaseFunctions.fillKeyStore(ks, keyEntries.values());
return ks;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/ProviderUtils.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/ProviderUtils.java
index 9614d6b1d..32804f577 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/ProviderUtils.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/ProviderUtils.java
@@ -1,18 +1,13 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
+import lombok.experimental.UtilityClass;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
-import javax.crypto.NoSuchPaddingException;
import java.security.Provider;
import java.security.Security;
+@UtilityClass
public class ProviderUtils {
- public static final Provider bcProvider;
-
- static {
- Security.addProvider(new BouncyCastleProvider());
- bcProvider = Security.getProvider("BC");
- if (bcProvider == null) throw new IllegalStateException(new NoSuchPaddingException("BC"));
- }
+ public static final Provider bcProvider = Security.getProvider(BouncyCastleProvider.PROVIDER_NAME);
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyData.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyData.java
index 2cd657144..07db999a0 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyData.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyData.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyEntry;
import lombok.Builder;
import lombok.Getter;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyGeneratorImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyGeneratorImpl.java
index 15abee46a..6f0db726a 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyGeneratorImpl.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/generator/SecretKeyGeneratorImpl.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.generator;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyGenerator;
import javax.crypto.SecretKey;
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/KeyPairGenerator.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/KeyPairGenerator.java
index 2efe9ea04..7f059f0da 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/KeyPairGenerator.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/KeyPairGenerator.java
@@ -1,6 +1,6 @@
package de.adorsys.datasafe.encrypiton.impl.keystore.types;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
/**
* Created by peter on 26.02.18 at 17:09.
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/PasswordBasedKeyConfig.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/PasswordBasedKeyConfig.java
deleted file mode 100644
index c8ed065e1..000000000
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/keystore/types/PasswordBasedKeyConfig.java
+++ /dev/null
@@ -1,6 +0,0 @@
-package de.adorsys.datasafe.encrypiton.impl.keystore.types;
-
-public interface PasswordBasedKeyConfig {
-
- String secretKeyFactoryId();
-}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryption.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryption.java
new file mode 100644
index 000000000..928a358d7
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryption.java
@@ -0,0 +1,205 @@
+package de.adorsys.datasafe.encrypiton.impl.pathencryption;
+
+import de.adorsys.datasafe.encrypiton.api.pathencryption.encryption.SymmetricPathEncryptionService;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
+import de.adorsys.datasafe.encrypiton.impl.pathencryption.dto.PathSegmentWithSecretKeyWith;
+import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
+import de.adorsys.datasafe.types.api.resource.Uri;
+import lombok.SneakyThrows;
+import lombok.extern.slf4j.Slf4j;
+
+import javax.inject.Inject;
+import java.net.URI;
+import java.nio.charset.StandardCharsets;
+import java.security.MessageDigest;
+import java.util.Arrays;
+import java.util.Base64;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+
+import static de.adorsys.datasafe.types.api.global.PathEncryptionId.AES_SIV;
+
+/**
+ * Path encryption service that maintains URI segments integrity.
+ * It means that path/to/file is encrypted to cipher(path)/cipher(to)/cipher(file) and each invocation of example:
+ * cipher(path) will yield same string, but cipher(path)/cipher(path) will not yield same segments -
+ * it will be more like abc/cde and not like abc/abc.
+ * Additionally each segment is authenticated against its parent path hash, so attacker can't
+ * move a/file to b/file without being detected.
+ */
+@Slf4j
+@RuntimeDelegate
+public class IntegrityPreservingUriEncryption implements SymmetricPathEncryptionService {
+
+ private static final int DOT_SLASH_PREFIX_LENGTH = 2;
+ private static final String DOT_SLASH_PREFIX = "./";
+ private static final String PATH_SEPARATOR = "/";
+
+ private final Function encryptAndEncode;
+ private final Function decryptAndDecode;
+
+ @Inject
+ public IntegrityPreservingUriEncryption(PathEncryptorDecryptor pathEncryptorDecryptor) {
+ encryptAndEncode = keyAndSegment -> encryptorAndEncoder(keyAndSegment, pathEncryptorDecryptor);
+ decryptAndDecode = keyAndSegment -> decryptorAndDecoder(keyAndSegment, pathEncryptorDecryptor);
+ }
+
+ /**
+ * Encrypts each URI segment separately and composes them back in same order.
+ */
+ @Override
+ @SneakyThrows
+ public Uri encrypt(AuthPathEncryptionSecretKey pathEncryptionSecretKey, Uri bucketPath) {
+ validateArgs(pathEncryptionSecretKey, bucketPath);
+ validateUriIsRelative(bucketPath);
+
+ Uri uri = processURIparts(
+ pathEncryptionSecretKey,
+ bucketPath,
+ encryptAndEncode
+ );
+
+ return AES_SIV.asUriRoot().resolve(uri);
+ }
+
+ /**
+ * Decrypts each URI segment separately and composes them back in same order.
+ */
+ @Override
+ @SneakyThrows
+ public Uri decrypt(AuthPathEncryptionSecretKey pathEncryptionSecretKey, Uri bucketPath) {
+ validateArgs(pathEncryptionSecretKey, bucketPath);
+ validateUriIsRelative(bucketPath);
+
+ bucketPath = AES_SIV.asUriRoot().relativize(bucketPath);
+
+ return processURIparts(
+ pathEncryptionSecretKey,
+ bucketPath,
+ decryptAndDecode
+ );
+ }
+
+ /**
+ * Parent path authentication digest. a/b/c - each path segment on encryption will be authenticated:
+ * for a - will be authenticated against ``
+ * for b - will be authenticated against `/encrypted(a)`
+ * for c - will be authenticated against `/encrypted(a)/encrypted(b)`
+ */
+ @SneakyThrows
+ protected MessageDigest getDigest() {
+ return MessageDigest.getInstance("SHA-256");
+ }
+
+ protected String decryptorAndDecoder(PathSegmentWithSecretKeyWith keyAndSegment,
+ PathEncryptorDecryptor pathEncryptorDecryptor) {
+ byte[] segment = keyAndSegment.getPath().getBytes(StandardCharsets.UTF_8);
+ keyAndSegment.getDigest().update(segment);
+
+ return new String(
+ pathEncryptorDecryptor.decrypt(
+ keyAndSegment.getPathEncryptionSecretKey(),
+ decode(keyAndSegment.getPath()),
+ keyAndSegment.getParentHash()
+ ),
+ StandardCharsets.UTF_8
+ );
+ }
+
+ protected String encryptorAndEncoder(PathSegmentWithSecretKeyWith keyAndSegment,
+ PathEncryptorDecryptor pathEncryptorDecryptor) {
+ String result = encode(
+ pathEncryptorDecryptor.encrypt(
+ keyAndSegment.getPathEncryptionSecretKey(),
+ keyAndSegment.getPath().getBytes(StandardCharsets.UTF_8),
+ keyAndSegment.getParentHash()
+ )
+ );
+
+ keyAndSegment.getDigest().update(result.getBytes(StandardCharsets.UTF_8));
+ return result;
+ }
+
+ @SneakyThrows
+ private byte[] decode(String encryptedPath) {
+ if (null == encryptedPath || encryptedPath.isEmpty()) {
+ return null;
+ }
+
+ return Base64.getUrlDecoder().decode(encryptedPath);
+ }
+
+ @SneakyThrows
+ private String encode(byte[] encryptedPath) {
+ if (null == encryptedPath) {
+ return null;
+ }
+
+ return Base64.getUrlEncoder().encodeToString(encryptedPath);
+ }
+
+ private Uri processURIparts(
+ AuthPathEncryptionSecretKey secretKeyEntry,
+ Uri bucketPath,
+ Function process) {
+ StringBuilder result = new StringBuilder();
+
+ String path = bucketPath.getRawPath();
+ if (bucketPath.getRawPath().startsWith(DOT_SLASH_PREFIX)) {
+ result.append(DOT_SLASH_PREFIX);
+ path = bucketPath.getRawPath().substring(DOT_SLASH_PREFIX_LENGTH);
+ }
+
+ if (path.isEmpty()) {
+ return new Uri(result.toString());
+ }
+
+ String[] segments = path.split(PATH_SEPARATOR);
+
+ return new Uri(URI.create(processSegments(secretKeyEntry, process, segments)));
+ }
+
+ private String processSegments(AuthPathEncryptionSecretKey secretKeyEntry,
+ Function process,
+ String[] segments) {
+ MessageDigest digest = getDigest();
+ digest.update(PATH_SEPARATOR.getBytes(StandardCharsets.UTF_8));
+
+ return Arrays.stream(segments)
+ .map(it -> processAndAuthenticateSegment(it, secretKeyEntry, process, digest))
+ .collect(Collectors.joining(PATH_SEPARATOR));
+ }
+
+ @SneakyThrows
+ private String processAndAuthenticateSegment(
+ String segment,
+ AuthPathEncryptionSecretKey secretKeyEntry,
+ Function process,
+ MessageDigest digest) {
+ MessageDigest currentDigest = (MessageDigest) digest.clone();
+ return process.apply(
+ new PathSegmentWithSecretKeyWith(
+ digest,
+ currentDigest.digest(),
+ secretKeyEntry,
+ segment
+ )
+ );
+ }
+
+ private static void validateArgs(AuthPathEncryptionSecretKey secretKeyEntry, Uri bucketPath) {
+ if (null == secretKeyEntry) {
+ throw new IllegalArgumentException("Secret key should not be null");
+ }
+
+ if (null == bucketPath) {
+ throw new IllegalArgumentException("Bucket path should not be null");
+ }
+ }
+
+ private static void validateUriIsRelative(Uri uri) {
+ if (uri.isAbsolute()) {
+ throw new IllegalArgumentException("URI should be relative");
+ }
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptionImpl.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptionImpl.java
index b16d8d19a..76bc10001 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptionImpl.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptionImpl.java
@@ -4,7 +4,7 @@
import de.adorsys.datasafe.encrypiton.api.pathencryption.PathEncryption;
import de.adorsys.datasafe.encrypiton.api.pathencryption.encryption.SymmetricPathEncryptionService;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.SecretKeyIDWithKey;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import de.adorsys.datasafe.types.api.resource.Uri;
import lombok.extern.slf4j.Slf4j;
@@ -20,13 +20,13 @@
@RuntimeDelegate
public class PathEncryptionImpl implements PathEncryption {
- private final SymmetricPathEncryptionService bucketPathEncryptionService;
+ private final SymmetricPathEncryptionService symmetricPathEncryptionService;
private final PrivateKeyService privateKeyService;
@Inject
- public PathEncryptionImpl(SymmetricPathEncryptionService bucketPathEncryptionService,
+ public PathEncryptionImpl(SymmetricPathEncryptionService symmetricPathEncryptionService,
PrivateKeyService privateKeyService) {
- this.bucketPathEncryptionService = bucketPathEncryptionService;
+ this.symmetricPathEncryptionService = symmetricPathEncryptionService;
this.privateKeyService = privateKeyService;
}
@@ -35,8 +35,8 @@ public PathEncryptionImpl(SymmetricPathEncryptionService bucketPathEncryptionSer
*/
@Override
public Uri encrypt(UserIDAuth forUser, Uri path) {
- SecretKeyIDWithKey keySpec = privateKeyService.pathEncryptionSecretKey(forUser);
- Uri encrypt = bucketPathEncryptionService.encrypt(keySpec.getSecretKey(), path);
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = privateKeyService.pathEncryptionSecretKey(forUser);
+ Uri encrypt = symmetricPathEncryptionService.encrypt(pathEncryptionSecretKey, path);
log.debug("encrypted path {} for user {} path {}", encrypt, forUser.getUserID(), path);
return encrypt;
}
@@ -46,9 +46,9 @@ public Uri encrypt(UserIDAuth forUser, Uri path) {
*/
@Override
public Function decryptor(UserIDAuth forUser) {
- SecretKeyIDWithKey keySpec = privateKeyService.pathEncryptionSecretKey(forUser);
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = privateKeyService.pathEncryptionSecretKey(forUser);
return encryptedPath -> {
- Uri decrypt = bucketPathEncryptionService.decrypt(keySpec.getSecretKey(), encryptedPath);
+ Uri decrypt = symmetricPathEncryptionService.decrypt(pathEncryptionSecretKey, encryptedPath);
log.debug("decrypted path {} for user {} path {}", decrypt, forUser.getUserID(), encryptedPath);
return decrypt;
};
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptorDecryptor.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptorDecryptor.java
new file mode 100644
index 000000000..33010ab8c
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathEncryptorDecryptor.java
@@ -0,0 +1,22 @@
+package de.adorsys.datasafe.encrypiton.impl.pathencryption;
+
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
+
+public interface PathEncryptorDecryptor {
+
+ /**
+ * @param pathSecretKey entity that contains keys for encrypt path
+ * @param originalPath path to encrypt
+ * @param associated Associated data to authenticate
+ * @return Encrypted path using {@code pathSecretKey}
+ */
+ byte[] encrypt(AuthPathEncryptionSecretKey pathSecretKey, byte[] originalPath, byte[] associated);
+
+ /**
+ * @param pathSecretKey entity that contains keys for decrypt path
+ * @param encryptedPath path to decrypt
+ * @param associated Associated data to authenticate
+ * @return Decrypted path using {@code pathSecretKey}
+ */
+ byte[] decrypt(AuthPathEncryptionSecretKey pathSecretKey, byte[] encryptedPath, byte[] associated);
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathSegmentEncryptorDecryptor.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathSegmentEncryptorDecryptor.java
new file mode 100644
index 000000000..1d0658f0d
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/PathSegmentEncryptorDecryptor.java
@@ -0,0 +1,51 @@
+package de.adorsys.datasafe.encrypiton.impl.pathencryption;
+
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
+import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
+import lombok.SneakyThrows;
+import lombok.extern.slf4j.Slf4j;
+import org.cryptomator.siv.SivMode;
+
+import javax.inject.Inject;
+
+/**
+ * Default path encryption/decryption that uses AES-SIV mode.
+ *
+ * @see RFC-845
+ * Using @see SIV-MODE library for encryption and decryption
+ * Encodes resulting bytes using Base64-urlsafe encoding.
+ */
+@Slf4j
+@RuntimeDelegate
+public class PathSegmentEncryptorDecryptor implements PathEncryptorDecryptor {
+
+ private final SivMode sivMode;
+
+ @Inject
+ public PathSegmentEncryptorDecryptor(SivMode sivMode) {
+ this.sivMode = sivMode;
+ }
+
+ @Override
+ public byte[] encrypt(AuthPathEncryptionSecretKey pathSecretKey, byte[] originalPath, byte[] associated) {
+
+ return sivMode.encrypt(
+ pathSecretKey.getCounterSecretKey().getSecretKey(),
+ pathSecretKey.getSecretKey().getSecretKey(),
+ originalPath,
+ associated
+ );
+ }
+
+ @Override
+ @SneakyThrows
+ public byte[] decrypt(AuthPathEncryptionSecretKey pathSecretKey, byte[] encryptedPath, byte[] associated) {
+
+ return sivMode.decrypt(
+ pathSecretKey.getCounterSecretKey().getSecretKey(),
+ pathSecretKey.getSecretKey().getSecretKey(),
+ encryptedPath,
+ associated
+ );
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/dto/PathSegmentWithSecretKeyWith.java b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/dto/PathSegmentWithSecretKeyWith.java
new file mode 100644
index 000000000..5ad1609a3
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/main/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/dto/PathSegmentWithSecretKeyWith.java
@@ -0,0 +1,37 @@
+package de.adorsys.datasafe.encrypiton.impl.pathencryption.dto;
+
+import de.adorsys.datasafe.encrypiton.api.types.keystore.AuthPathEncryptionSecretKey;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.Setter;
+
+import java.security.MessageDigest;
+
+/**
+ * Contains path segment for encryption or decryption and related secret key entity.
+ */
+@Getter
+@Setter
+@AllArgsConstructor
+public class PathSegmentWithSecretKeyWith {
+
+ /**
+ * Digest to update with encrypted URI segment to authenticate.
+ */
+ private final MessageDigest digest;
+
+ /**
+ * Parent path hash.
+ */
+ private final byte[] parentHash;
+
+ /**
+ * Keys for encryption and decryption path.
+ */
+ private final AuthPathEncryptionSecretKey pathEncryptionSecretKey;
+
+ /**
+ * Encrypted or decrypted path segment.
+ */
+ private final String path;
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfigTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfigTest.java
new file mode 100644
index 000000000..c4748d4c1
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/api/types/encryption/MutableEncryptionConfigTest.java
@@ -0,0 +1,92 @@
+package de.adorsys.datasafe.encrypiton.api.types.encryption;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
+import com.fasterxml.jackson.dataformat.yaml.YAMLGenerator;
+import com.google.common.io.CharSource;
+import com.google.common.io.Resources;
+import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.SneakyThrows;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.MethodSource;
+import org.junit.jupiter.params.provider.ValueSource;
+
+import java.io.Reader;
+import java.nio.charset.StandardCharsets;
+import java.util.stream.Stream;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class MutableEncryptionConfigTest extends BaseMockitoTest {
+
+ private ObjectMapper mapper = createMapper();
+
+ @ValueSource(strings = {
+ "config-test/mutable-scrypt.yaml",
+ "config-test/mutable-pbkdf2.yaml"
+ })
+ @ParameterizedTest
+ @SneakyThrows
+ void mappingTest(String yamlFixture) {
+ String expected = readResource(yamlFixture);
+ MutableEncryptionConfig config = readResource(mapper, yamlFixture, MutableEncryptionConfig.class);
+ assertThat(config.getKeystore().getType()).isEqualTo("store-type");
+ assertThat(mapper.writeValueAsString(config.toEncryptionConfig())).isEqualTo(expected);
+ }
+
+ @MethodSource("nullsTest")
+ @ParameterizedTest
+ @SneakyThrows
+ void mappingWithNullsTest(SourceAndExpectation yamlFixture) {
+ String expected = readResource(yamlFixture.getExpectation());
+ MutableEncryptionConfig config = readResource(mapper, yamlFixture.getSource(), MutableEncryptionConfig.class);
+ assertThat(mapper.writeValueAsString(config.toEncryptionConfig())).isEqualTo(expected);
+ }
+
+ @SneakyThrows
+ private T readResource(ObjectMapper mapper, String path, Class type) {
+ try (Reader reader = Resources.asCharSource(Resources.getResource(path), StandardCharsets.UTF_8).openStream()) {
+ return mapper.readValue(reader, type);
+ }
+ }
+
+ @SneakyThrows
+ private String readResource(String path) {
+ CharSource reader = Resources.asCharSource(Resources.getResource(path), StandardCharsets.UTF_8);
+ return reader.read();
+ }
+
+ private static Stream nullsTest() {
+ return Stream.of(
+ new SourceAndExpectation(
+ "config-test/null-test/mutable-null-cms.yaml",
+ "config-test/null-test/expectation/mutable-null-cms.yaml"
+ ),
+ new SourceAndExpectation(
+ "config-test/null-test/mutable-null-keys.yaml",
+ "config-test/null-test/expectation/mutable-null-keys.yaml"
+ ),
+ new SourceAndExpectation(
+ "config-test/null-test/mutable-null-keystore.yaml",
+ "config-test/null-test/expectation/mutable-null-keystore.yaml"
+ )
+ );
+ }
+
+ private static ObjectMapper createMapper() {
+ ObjectMapper mapper = new ObjectMapper(new YAMLFactory().enable(YAMLGenerator.Feature.MINIMIZE_QUOTES));
+ mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
+ return mapper;
+ }
+
+ @Data
+ @AllArgsConstructor
+ private static class SourceAndExpectation {
+
+ private String source;
+ private String expectation;
+ }
+}
\ No newline at end of file
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/KeyPairGeneratorTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/KeyPairGeneratorTest.java
index a49e6a82b..6cfb61e15 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/KeyPairGeneratorTest.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/KeyPairGeneratorTest.java
@@ -1,16 +1,27 @@
package de.adorsys.datasafe.encrypiton.impl;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.junit.jupiter.api.Test;
-class KeyPairGeneratorTest {
+import java.util.Date;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class KeyPairGeneratorTest extends WithBouncyCastle {
@Test
void testKeyPairGenerationWithCA() {
- ReadKeyPassword readKeyPassword = new ReadKeyPassword("read");
+ ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString("read");
TestableKeyPairGeneratorImpl i = new TestableKeyPairGeneratorImpl("RSA", 2048, "SHA256withRSA", "enc");
i.setDayAfter(40);
i.setWithCA(true);
- i.generateEncryptionKey("affe", readKeyPassword);
+
+ assertThat(
+ i.generateEncryptionKey("affe", readKeyPassword)
+ .getKeyPair()
+ .getSubjectCert()
+ .isValidOn(new Date())
+ ).isTrue();
}
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/WithBouncyCastle.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/WithBouncyCastle.java
new file mode 100644
index 000000000..129875c1e
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/WithBouncyCastle.java
@@ -0,0 +1,15 @@
+package de.adorsys.datasafe.encrypiton.impl;
+
+import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import org.bouncycastle.jce.provider.BouncyCastleProvider;
+import org.junit.jupiter.api.BeforeAll;
+
+import java.security.Security;
+
+public abstract class WithBouncyCastle extends BaseMockitoTest {
+
+ @BeforeAll
+ static void setupBouncyCastle() {
+ Security.addProvider(new BouncyCastleProvider());
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CmsEncryptionServiceImplTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CmsEncryptionServiceImplTest.java
index 879e3a230..45bf84a75 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CmsEncryptionServiceImplTest.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/CmsEncryptionServiceImplTest.java
@@ -3,11 +3,16 @@
import com.google.common.io.ByteStreams;
import de.adorsys.datasafe.encrypiton.api.cmsencryption.CMSEncryptionService;
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.CmsEncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.EncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
+import de.adorsys.datasafe.encrypiton.impl.WithBouncyCastle;
import de.adorsys.datasafe.encrypiton.impl.cmsencryption.exceptions.DecryptionException;
-import de.adorsys.datasafe.encrypiton.impl.keystore.DefaultPasswordBasedKeyConfig;
import de.adorsys.datasafe.encrypiton.impl.keystore.KeyStoreServiceImpl;
-import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.assertj.core.util.Sets;
@@ -28,7 +33,6 @@
import java.nio.file.Paths;
import java.security.KeyStore;
import java.security.MessageDigest;
-import java.security.Security;
import java.util.Arrays;
import java.util.Collections;
@@ -39,18 +43,20 @@
import static org.mockito.internal.util.io.IOUtil.closeQuietly;
@Slf4j
-class CmsEncryptionServiceImplTest extends BaseMockitoTest {
+class CmsEncryptionServiceImplTest extends WithBouncyCastle {
private static final String TEST_MESSAGE_CONTENT = "message content";
private static KeyStoreAccess keyStoreAccess;
- private static KeyStoreService keyStoreService = new KeyStoreServiceImpl(new DefaultPasswordBasedKeyConfig());
-
- private CMSEncryptionService cmsEncryptionService = new CMSEncryptionServiceImpl(new DefaultCMSEncryptionConfig());
+ private static KeyStoreService keyStoreService = new KeyStoreServiceImpl(
+ EncryptionConfig.builder().build().getKeystore()
+ );
+ private CMSEncryptionService cmsEncryptionService = new CMSEncryptionServiceImpl(
+ new ASNCmsEncryptionConfig(CmsEncryptionConfig.builder().build())
+ );
@BeforeAll
static void setUp() {
- Security.addProvider(new BouncyCastleProvider());
keyStoreAccess = getKeyStoreAccess();
}
@@ -200,12 +206,12 @@ void cmsStreamEnvelopeOneKeyPairFailTest() {
}
private static KeyStoreAccess getKeyStoreAccess(String label) {
- ReadKeyPassword readKeyPassword = new ReadKeyPassword(label);
+ ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString(label);
ReadStorePassword readStorePassword = new ReadStorePassword(label);
KeyStoreAuth keyStoreAuth = new KeyStoreAuth(readStorePassword, readKeyPassword);
- KeyStoreCreationConfig config = new KeyStoreCreationConfig(1, 1);
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config);
+ KeyCreationConfig config = KeyCreationConfig.builder().encKeyNumber(1).signKeyNumber(1).build();
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, config);
return new KeyStoreAccess(keyStore, keyStoreAuth);
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/KeyStoreUtil.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/KeyStoreUtil.java
index ba461d968..30c9d674d 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/KeyStoreUtil.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/KeyStoreUtil.java
@@ -27,6 +27,6 @@ private boolean containsAlias(String id, KeyStoreAccess access) {
@SneakyThrows
private Key getKey(String id, KeyStoreAccess access) {
- return access.getKeyStore().getKey(id, access.getKeyStoreAuth().getReadKeyPassword().getValue().toCharArray());
+ return access.getKeyStore().getKey(id, access.getKeyStoreAuth().getReadKeyPassword().getValue());
}
}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/SymetricEncryptionTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/SymetricEncryptionTest.java
index 98971ad06..a05fda84a 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/SymetricEncryptionTest.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/cmsencryption/SymetricEncryptionTest.java
@@ -2,9 +2,15 @@
import de.adorsys.datasafe.encrypiton.api.cmsencryption.CMSEncryptionService;
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.CmsEncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.EncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
-import de.adorsys.datasafe.encrypiton.impl.keystore.DefaultPasswordBasedKeyConfig;
+import de.adorsys.datasafe.encrypiton.impl.WithBouncyCastle;
import de.adorsys.datasafe.encrypiton.impl.keystore.KeyStoreServiceImpl;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.bouncycastle.cms.CMSException;
@@ -19,23 +25,25 @@
import java.security.KeyStore;
import java.util.Enumeration;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.PATH_KEY_ID_PREFIX;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.DOCUMENT_KEY_ID_PREFIX;
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.DOCUMENT_KEY_ID_PREFIX;
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.PATH_KEY_ID_PREFIX;
import static de.adorsys.datasafe.encrypiton.impl.cmsencryption.KeyStoreUtil.getKeys;
import static org.assertj.core.api.Assertions.assertThat;
@Slf4j
-class SymetricEncryptionTest {
+class SymetricEncryptionTest extends WithBouncyCastle {
private static final String MESSAGE_CONTENT = "message content";
- private CMSEncryptionService cmsEncryptionService = new CMSEncryptionServiceImpl(new DefaultCMSEncryptionConfig());
- private KeyStoreService keyStoreService = new KeyStoreServiceImpl(new DefaultPasswordBasedKeyConfig());
- private ReadKeyPassword readKeyPassword = new ReadKeyPassword("readkeypassword");
+ private CMSEncryptionService cmsEncryptionService = new CMSEncryptionServiceImpl(
+ new ASNCmsEncryptionConfig(CmsEncryptionConfig.builder().build())
+ );
+ private KeyStoreService keyStoreService = new KeyStoreServiceImpl(EncryptionConfig.builder().build().getKeystore());
+ private ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString("readkeypassword");
private ReadStorePassword readStorePassword = new ReadStorePassword("readstorepassword");
private KeyStoreAuth keyStoreAuth = new KeyStoreAuth(readStorePassword, readKeyPassword);
- private KeyStoreCreationConfig config = new KeyStoreCreationConfig(1, 1);
- private KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config);
+ private KeyCreationConfig config = KeyCreationConfig.builder().signKeyNumber(1).encKeyNumber(1).build();
+ private KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, config);
private KeyStoreAccess keyStoreAccess = new KeyStoreAccess(keyStore, keyStoreAuth);
@Test
@@ -63,7 +71,7 @@ void symetricStreamEncryptAndDecryptTest() {
@SneakyThrows
void symetricNegativeStreamEncryptAndDecryptTest() {
// This is the keystore we use to encrypt, it has SYMM_KEY_ID and PATH_KEY_ID symm. keys.
- keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config);
+ keyStoreService.createKeyStore(keyStoreAuth, config);
SecretKey realSecretKey = keyStoreService.getSecretKey(keyStoreAccess, keyIdByPrefix(DOCUMENT_KEY_ID_PREFIX));
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
// Test consist in encrypting with real secret key, but use fake secretKeyId - PATH_KEY_ID
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceTest.java
index 560f7a436..406749eab 100644
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceTest.java
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreServiceTest.java
@@ -1,14 +1,20 @@
package de.adorsys.datasafe.encrypiton.impl.keystore;
import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.EncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyStoreConfig;
import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
import de.adorsys.datasafe.encrypiton.api.types.keystore.exceptions.KeyStoreConfigException;
import de.adorsys.datasafe.encrypiton.impl.KeystoreUtil;
-import de.adorsys.datasafe.encrypiton.impl.keystore.generator.KeyStoreCreationConfigImpl;
+import de.adorsys.datasafe.encrypiton.impl.WithBouncyCastle;
+import de.adorsys.datasafe.encrypiton.impl.keystore.generator.KeyCreationConfigImpl;
import de.adorsys.datasafe.encrypiton.impl.keystore.generator.KeyStoreServiceImplBaseFunctions;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.KeyPairEntry;
import de.adorsys.datasafe.encrypiton.impl.keystore.types.KeyPairGenerator;
-import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -21,68 +27,68 @@
import java.util.List;
import java.util.UUID;
-import static de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreCreationConfig.DOCUMENT_KEY_ID_PREFIX;
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.DOCUMENT_KEY_ID_PREFIX;
-class KeyStoreServiceTest extends BaseMockitoTest {
+class KeyStoreServiceTest extends WithBouncyCastle {
- private KeyStoreService keyStoreService = new KeyStoreServiceImpl(new DefaultPasswordBasedKeyConfig());
+ private KeyStoreService keyStoreService = new KeyStoreServiceImpl(EncryptionConfig.builder().build().getKeystore());
private KeyStoreAuth keyStoreAuth;
@BeforeEach
void setUp() {
ReadStorePassword readStorePassword = new ReadStorePassword("keystorepass");
- ReadKeyPassword readKeyPassword = new ReadKeyPassword("keypass");
+ ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString("keypass");
keyStoreAuth = new KeyStoreAuth(readStorePassword, readKeyPassword);
}
@Test
void createKeyStore() throws Exception {
- KeyStoreCreationConfig config = new KeyStoreCreationConfig(0, 1);
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config);
+ KeyCreationConfig config = KeyCreationConfig.builder().signKeyNumber(0).encKeyNumber(1).build();
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, config);
Assertions.assertNotNull(keyStore);
List list = Collections.list(keyStore.aliases());
- // One additional secret key being generated for path encryption and one for private doc encryption.
- Assertions.assertEquals(3, list.size());
+ // Two additional secret key(key and counter key) being generated for path encryption and one for private doc encryption.
+ Assertions.assertEquals(4, list.size());
- Assertions.assertEquals("UBER", keyStore.getType());
+ Assertions.assertEquals("BCFKS", keyStore.getType());
Assertions.assertEquals(Security.getProvider("BC"), keyStore.getProvider());
}
@Test
void createKeyStoreEmptyConfig() throws Exception {
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, null);
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyCreationConfig.builder().build());
Assertions.assertNotNull(keyStore);
List list = Collections.list(keyStore.aliases());
// One additional secret key being generated for path encryption and one for private doc encryption.
- Assertions.assertEquals(12, list.size());
+ Assertions.assertEquals(5, list.size());
}
@Test
void createKeyStoreException() {
- KeyStoreCreationConfig config = new KeyStoreCreationConfig(0, 0);
+ KeyCreationConfig config = KeyCreationConfig.builder().encKeyNumber(0).signKeyNumber(0).build();
Assertions.assertThrows(KeyStoreConfigException.class, () ->
- keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config, Collections.emptyMap())
+ keyStoreService.createKeyStore(keyStoreAuth, config, Collections.emptyMap())
);
}
@Test
void getPublicKeys() {
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, null);
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyCreationConfig.builder().build());
KeyStoreAccess keyStoreAccess = new KeyStoreAccess(keyStore, keyStoreAuth);
List publicKeys = keyStoreService.getPublicKeys(keyStoreAccess);
- Assertions.assertEquals(5, publicKeys.size());
+ Assertions.assertEquals(1, publicKeys.size());
}
@Test
void getPrivateKey() throws Exception {
- KeyStore keyStore = KeyStoreServiceImplBaseFunctions.newKeyStore(KeyStoreType.DEFAULT); // UBER
+ KeyStore keyStore = KeyStoreServiceImplBaseFunctions.newKeyStore(KeyStoreConfig.builder().build()); // BCFKS
- ReadKeyPassword readKeyPassword = new ReadKeyPassword("keypass");
- KeyStoreCreationConfigImpl keyStoreCreationConfig = new KeyStoreCreationConfigImpl(null);
+ ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString("keypass");
+ KeyCreationConfigImpl keyStoreCreationConfig = new KeyCreationConfigImpl(KeyCreationConfig.builder().build());
KeyPairGenerator encKeyPairGenerator = keyStoreCreationConfig.getEncKeyPairGenerator("KEYSTORE-ID-0");
String alias = "KEYSTORE-ID-0" + UUID.randomUUID().toString();
KeyPairEntry keyPairEntry = encKeyPairGenerator.generateEncryptionKey(alias, readKeyPassword);
@@ -99,7 +105,7 @@ void getPrivateKey() throws Exception {
@Test
void getPrivateKeyException() throws Exception {
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, null);
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyCreationConfig.builder().build());
KeyStoreAccess keyStoreAccess = new KeyStoreAccess(keyStore, keyStoreAuth);
List list = Collections.list(keyStore.aliases());
Assertions.assertThrows(ClassCastException.class, () -> {
@@ -111,8 +117,8 @@ void getPrivateKeyException() throws Exception {
@Test
void getSecretKey() {
- KeyStoreCreationConfig config = new KeyStoreCreationConfig(0, 1);
- KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, KeyStoreType.DEFAULT, config);
+ KeyCreationConfig config = KeyCreationConfig.builder().signKeyNumber(1).encKeyNumber(0).build();
+ KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, config);
KeyStoreAccess keyStoreAccess = new KeyStoreAccess(keyStore, keyStoreAuth);
KeyID keyID = KeystoreUtil.keyIdByPrefix(keyStore, DOCUMENT_KEY_ID_PREFIX);
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreTypeTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreTypeTest.java
deleted file mode 100644
index 8b03baedc..000000000
--- a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/keystore/KeyStoreTypeTest.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package de.adorsys.datasafe.encrypiton.impl.keystore;
-
-import de.adorsys.datasafe.encrypiton.api.types.keystore.KeyStoreType;
-import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
-import org.junit.jupiter.api.Assertions;
-import org.junit.jupiter.api.Test;
-
-import java.util.UUID;
-
-class KeyStoreTypeTest extends BaseMockitoTest {
-
- @Test
- void typeBySystemEnv() {
- String value = this.getClass().getSimpleName() + UUID.randomUUID().toString();
- System.setProperty("SERVER_KEYSTORE_TYPE", value);
- Assertions.assertEquals(value, TestableKeyStoreType.getStaticDefaultKeyStoreType().getValue());
- System.clearProperty("SERVER_KEYSTORE_TYPE");
- TestableKeyStoreType.resetType();
- }
-
- public static class TestableKeyStoreType extends KeyStoreType {
-
- public TestableKeyStoreType(String value) {
- super(value);
- }
-
- static KeyStoreType getStaticDefaultKeyStoreType() {
- return KeyStoreType.getDefaultKeyStoreType();
- }
-
- static void resetType() {
- DEFAULT = getStaticDefaultKeyStoreType();
- }
- }
-}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryptionTest.java b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryptionTest.java
new file mode 100644
index 000000000..bb8ae6c10
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/java/de/adorsys/datasafe/encrypiton/impl/pathencryption/IntegrityPreservingUriEncryptionTest.java
@@ -0,0 +1,111 @@
+package de.adorsys.datasafe.encrypiton.impl.pathencryption;
+
+import de.adorsys.datasafe.encrypiton.api.keystore.KeyStoreService;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.EncryptionConfig;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig;
+import de.adorsys.datasafe.encrypiton.api.types.keystore.*;
+import de.adorsys.datasafe.encrypiton.impl.KeystoreUtil;
+import de.adorsys.datasafe.encrypiton.impl.WithBouncyCastle;
+import de.adorsys.datasafe.encrypiton.impl.keystore.KeyStoreServiceImpl;
+import de.adorsys.datasafe.types.api.resource.Uri;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
+import lombok.extern.slf4j.Slf4j;
+import org.cryptomator.siv.SivMode;
+import org.junit.jupiter.api.Test;
+
+import javax.crypto.BadPaddingException;
+import javax.crypto.IllegalBlockSizeException;
+import javax.crypto.spec.SecretKeySpec;
+import java.net.URI;
+import java.security.KeyStore;
+
+import static de.adorsys.datasafe.encrypiton.api.types.encryption.KeyCreationConfig.PATH_KEY_ID_PREFIX_CTR;
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+@Slf4j
+class IntegrityPreservingUriEncryptionTest extends WithBouncyCastle {
+
+ private IntegrityPreservingUriEncryption symmetricPathEncryptionService = new IntegrityPreservingUriEncryption(
+ new PathSegmentEncryptorDecryptor(new SivMode())
+ );
+
+ private KeyStoreService keyStoreService = new KeyStoreServiceImpl(EncryptionConfig.builder().build().getKeystore());
+ private ReadKeyPassword readKeyPassword = ReadKeyPasswordTestFactory.getForString("readkeypassword");
+ private ReadStorePassword readStorePassword = new ReadStorePassword("readstorepassword");
+ private KeyStoreAuth keyStoreAuth = new KeyStoreAuth(readStorePassword, readKeyPassword);
+ private KeyCreationConfig config = KeyCreationConfig.builder().encKeyNumber(0).signKeyNumber(1).build();
+ private KeyStore keyStore = keyStoreService.createKeyStore(keyStoreAuth, config);
+ private KeyStoreAccess keyStoreAccess = new KeyStoreAccess(keyStore, keyStoreAuth);
+
+ @Test
+ void testEncryptionDoesNotLeakSameSegments() {
+ String testPath = "path/to/path/file/to";
+
+ Uri testURI = new Uri(testPath);
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = pathEncryptionSecretKey();
+
+ Uri encrypted = symmetricPathEncryptionService.encrypt(pathEncryptionSecretKey, testURI);
+
+ String[] encryptedSegments = encrypted.asString().split("/");
+ assertThat(encryptedSegments[1]).isNotEqualTo(encryptedSegments[3]);
+ assertThat(encryptedSegments[2]).isNotEqualTo(encryptedSegments[5]);
+ }
+
+ @Test
+ void testSuccessEncryptDecryptPath() {
+ String testPath = "path/to/file";
+
+ Uri testURI = new Uri(testPath);
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = pathEncryptionSecretKey();
+
+ Uri encrypted = symmetricPathEncryptionService.encrypt(pathEncryptionSecretKey, testURI);
+ log.debug("Encrypted path: {}", encrypted);
+
+ Uri decrypted = symmetricPathEncryptionService.decrypt(pathEncryptionSecretKey, encrypted);
+ log.debug("Decrypted path: {}", decrypted);
+
+ assertEquals(testPath, decrypted.toASCIIString());
+ }
+
+ @Test
+ void testFailEncryptPathWithBrokenEncryptedPath() {
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = pathEncryptionSecretKey();
+
+ assertThrows(BadPaddingException.class,
+ () -> symmetricPathEncryptionService.decrypt(pathEncryptionSecretKey,
+ new Uri(URI.create("bRQiW8qLNPEy5tO7shfV0w==/k0HooCVlmhHkQFw8mc=="))));
+ }
+
+ @Test
+ void testFailEncryptPathWithTextPath() {
+ AuthPathEncryptionSecretKey pathEncryptionSecretKey = pathEncryptionSecretKey();
+
+ assertThrows(
+ IllegalBlockSizeException.class,
+ () -> symmetricPathEncryptionService.decrypt(pathEncryptionSecretKey, new Uri("simple/text/path/"))
+ );
+ }
+
+ private AuthPathEncryptionSecretKey pathEncryptionSecretKey() {
+ KeyID secretKeyId = KeystoreUtil.keyIdByPrefix(keyStore, KeyCreationConfig.PATH_KEY_ID_PREFIX);
+ SecretKeySpec secretKey = keyStoreService.getSecretKey(
+ keyStoreAccess,
+ secretKeyId
+ );
+
+ KeyID counterSecretKeyId = KeystoreUtil.keyIdByPrefix(keyStore, PATH_KEY_ID_PREFIX_CTR);
+ SecretKeySpec secretKeyCtr = keyStoreService.getSecretKey(
+ keyStoreAccess,
+ counterSecretKeyId
+ );
+
+ return new AuthPathEncryptionSecretKey(
+ new SecretKeyIDWithKey(secretKeyId, secretKey),
+ new SecretKeyIDWithKey(counterSecretKeyId, secretKeyCtr)
+ );
+ }
+}
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-pbkdf2.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-pbkdf2.yaml
new file mode 100644
index 000000000..75c0a7a5f
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-pbkdf2.yaml
@@ -0,0 +1,27 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ pbkdf2:
+ algo: pbkdf-algo
+ saltLength: 2
+ iterCount: 3
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
+cms:
+ algo: cms-algo1
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-scrypt.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-scrypt.yaml
new file mode 100644
index 000000000..9ad18ba44
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/mutable-scrypt.yaml
@@ -0,0 +1,28 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ scrypt:
+ cost: 1
+ blockSize: 2
+ parallelization: 3
+ saltLength: 4
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
+cms:
+ algo: cms-algo1
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-cms.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-cms.yaml
new file mode 100644
index 000000000..9d5e12ca7
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-cms.yaml
@@ -0,0 +1,28 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ scrypt:
+ cost: 1
+ blockSize: 2
+ parallelization: 3
+ saltLength: 4
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
+cms:
+ algo: AES256_GCM
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keys.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keys.yaml
new file mode 100644
index 000000000..6cb3e3241
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keys.yaml
@@ -0,0 +1,28 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ scrypt:
+ cost: 1
+ blockSize: 2
+ parallelization: 3
+ saltLength: 4
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 1
+ secret:
+ algo: AES
+ size: 256
+ encrypting:
+ algo: RSA
+ size: 2048
+ sigAlgo: SHA256withRSA
+ singing:
+ algo: RSA
+ size: 2048
+ sigAlgo: SHA256withRSA
+cms:
+ algo: cms-algo1
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keystore.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keystore.yaml
new file mode 100644
index 000000000..5b5872fa0
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/expectation/mutable-null-keystore.yaml
@@ -0,0 +1,27 @@
+---
+keystore:
+ type: BCFKS
+ encryptionAlgo: AES256_KWP
+ pbkdf:
+ pbkdf2:
+ algo: PRF_SHA512
+ saltLength: 32
+ iterCount: 20480
+ macAlgo: HmacSHA3_512
+ passwordKeysAlgo: PBEWithHmacSHA256AndAES_256
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
+cms:
+ algo: cms-algo1
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-cms.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-cms.yaml
new file mode 100644
index 000000000..2d2653277
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-cms.yaml
@@ -0,0 +1,26 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ scrypt:
+ cost: 1
+ blockSize: 2
+ parallelization: 3
+ saltLength: 4
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
\ No newline at end of file
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keys.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keys.yaml
new file mode 100644
index 000000000..52c23cba4
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keys.yaml
@@ -0,0 +1,14 @@
+---
+keystore:
+ type: store-type
+ encryptionAlgo: store-enc
+ pbkdf:
+ scrypt:
+ cost: 1
+ blockSize: 2
+ parallelization: 3
+ saltLength: 4
+ macAlgo: store-mac
+ passwordKeysAlgo: store-pwd-keys
+cms:
+ algo: cms-algo1
\ No newline at end of file
diff --git a/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keystore.yaml b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keystore.yaml
new file mode 100644
index 000000000..e799a2f34
--- /dev/null
+++ b/datasafe-encryption/datasafe-encryption-impl/src/test/resources/config-test/null-test/mutable-null-keystore.yaml
@@ -0,0 +1,17 @@
+---
+keys:
+ encKeyNumber: 1
+ signKeyNumber: 2
+ secret:
+ algo: sec-algo
+ size: 12
+ encrypting:
+ algo: enc-algo
+ size: 13
+ sigAlgo: srv-sig-algo
+ singing:
+ algo: sig-algo
+ size: 14
+ sigAlgo: srv-sig-algo
+cms:
+ algo: cms-algo1
\ No newline at end of file
diff --git a/datasafe-encryption/pom.xml b/datasafe-encryption/pom.xml
index 7fc6785ef..bd3383c55 100644
--- a/datasafe-encryption/pom.xml
+++ b/datasafe-encryption/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.6.2
+ 0.7.0
4.0.0
diff --git a/datasafe-examples/datasafe-examples-business/README.md b/datasafe-examples/datasafe-examples-business/README.md
index da51b1197..ffed9d68b 100644
--- a/datasafe-examples/datasafe-examples-business/README.md
+++ b/datasafe-examples/datasafe-examples-business/README.md
@@ -2,10 +2,10 @@
This module contains examples of how to use Datasafe library using its business layer.
-- [BaseUserOperationsTestWithDefaultDatasafe](src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafe.java)
+* [BaseUserOperationsTestWithDefaultDatasafe](src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafeTest.java)
shows how to use standard Datasafe service
-- [BaseUserOperationsTestWithVersionedDatasafe](src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafe.java)
+* [BaseUserOperationsTestWithVersionedDatasafe](src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafeTest.java)
shows how to use standard Datasafe service with
[software versioning](../../datasafe-metainfo/datasafe-metainfo-version-api/src/main/java/de/adorsys/datasafe/metainfo/version/api/version/VersionedPrivateSpaceService.java)
-- [RuntimeOverrideOperationsTest](src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java)
-shows how to customize Datasafe without recompilation
\ No newline at end of file
+* [RuntimeOverrideOperationsTest](src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java)
+shows how to customize Datasafe without recompilation
diff --git a/datasafe-examples/datasafe-examples-business/pom.xml b/datasafe-examples/datasafe-examples-business/pom.xml
index 7e13c8229..08fc36099 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.6.2
+ 0.7.0
datasafe-examples-business
@@ -47,6 +47,13 @@
mockito-core
test
+
+ de.adorsys
+ datasafe-types-api
+ ${project.version}
+ test-jar
+ test
+
diff --git a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafeTest.java b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafeTest.java
index 90165d97b..77fb54f04 100644
--- a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafeTest.java
+++ b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithDefaultDatasafeTest.java
@@ -7,12 +7,14 @@
import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.actions.ReadRequest;
import de.adorsys.datasafe.types.api.actions.WriteRequest;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.ResolvedResource;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.BeforeEach;
@@ -47,7 +49,7 @@ void createServices(@TempDir Path root) {
Security.addProvider(new BouncyCastleProvider());
// this will create all Datasafe files and user documents under
defaultDatasafeServices = DaggerDefaultDatasafeServices.builder()
- .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), "secret"))
+ .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), new ReadStorePassword("secret")))
.storage(new FileSystemStorageService(root))
.build();
// END_SNIPPET
@@ -64,7 +66,7 @@ void registerUser() {
IMPORTANT: For cases when user profile is stored on S3 without object locks, this requires some global
synchronization due to eventual consistency or you need to supply globally unique username on registration
*/
- defaultDatasafeServices.userProfile().registerUsingDefaults(new UserIDAuth("user", "passwrd"));
+ defaultDatasafeServices.userProfile().registerUsingDefaults(new UserIDAuth("user", ReadKeyPasswordTestFactory.getForString("passwrd")));
// END_SNIPPET
assertThat(defaultDatasafeServices.userProfile().userExists(new UserID("user")));
@@ -294,7 +296,7 @@ private void writeToPrivate(UserIDAuth user, String path, String fileContent) {
}
private UserIDAuth registerUser(String username) {
- UserIDAuth creds = new UserIDAuth(username, "passwrd" + username);
+ UserIDAuth creds = new UserIDAuth(username, ReadKeyPasswordTestFactory.getForString("passwrd" + username));
defaultDatasafeServices.userProfile().registerUsingDefaults(creds);
return creds;
}
diff --git a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafeTest.java b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafeTest.java
index 0ac35ca01..2b133940f 100644
--- a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafeTest.java
+++ b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/BaseUserOperationsTestWithVersionedDatasafeTest.java
@@ -5,6 +5,7 @@
import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.metainfo.version.impl.version.types.DFSVersion;
import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService;
import de.adorsys.datasafe.types.api.actions.ListRequest;
@@ -14,6 +15,7 @@
import de.adorsys.datasafe.types.api.resource.PrivateResource;
import de.adorsys.datasafe.types.api.resource.ResolvedResource;
import de.adorsys.datasafe.types.api.resource.Versioned;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.BeforeEach;
@@ -44,12 +46,11 @@ class BaseUserOperationsTestWithVersionedDatasafeTest {
*/
@BeforeEach
void createServices(@TempDir Path root) {
- Security.addProvider(new BouncyCastleProvider());
// BEGIN_SNIPPET:Create versioned Datasafe services
Security.addProvider(new BouncyCastleProvider());
// this will create all Datasafe files and user documents under
versionedServices = DaggerVersionedDatasafeServices.builder()
- .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), "secret"))
+ .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), new ReadStorePassword("secret")))
.storage(new FileSystemStorageService(root))
.build();
// END_SNIPPET
@@ -66,7 +67,7 @@ void registerUser() {
IMPORTANT: For cases when user profile is stored on S3 without object locks, this requires some global
synchronization due to eventual consistency or you need to supply globally unique username on registration
*/
- versionedServices.userProfile().registerUsingDefaults(new UserIDAuth("user", "passwrd"));
+ versionedServices.userProfile().registerUsingDefaults(new UserIDAuth("user", ReadKeyPasswordTestFactory.getForString("passwrd")));
// END_SNIPPET
assertThat(versionedServices.userProfile().userExists(new UserID("user")));
@@ -166,7 +167,7 @@ void checkThatWeNeedToDownloadNewFile() {
}
private UserIDAuth registerUser(String username) {
- UserIDAuth creds = new UserIDAuth(username, "passwrd" + username);
+ UserIDAuth creds = new UserIDAuth(username, ReadKeyPasswordTestFactory.getForString("passwrd" + username));
versionedServices.userProfile().registerUsingDefaults(creds);
return creds;
}
diff --git a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java
index 55d29c0e5..3d332e2d0 100644
--- a/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java
+++ b/datasafe-examples/datasafe-examples-business/src/test/java/de/adorsys/datasafe/examples/business/filesystem/RuntimeOverrideOperationsTest.java
@@ -4,6 +4,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.types.ReadStorePassword;
import de.adorsys.datasafe.encrypiton.impl.pathencryption.PathEncryptionImpl;
import de.adorsys.datasafe.encrypiton.impl.pathencryption.PathEncryptionImplRuntimeDelegatable;
import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService;
@@ -11,6 +12,7 @@
import de.adorsys.datasafe.types.api.context.BaseOverridesRegistry;
import de.adorsys.datasafe.types.api.context.overrides.OverridesRegistry;
import de.adorsys.datasafe.types.api.resource.Uri;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.Test;
@@ -39,13 +41,13 @@ void testPathEncryptionOverridden(@TempDir Path root) {
// Customized service, without creating complete module and building it:
DefaultDatasafeServices datasafeServices = DaggerDefaultDatasafeServices.builder()
- .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), "secret"))
+ .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), new ReadStorePassword("secret")))
.storage(new FileSystemStorageService(root))
.overridesRegistry(registry)
.build();
// registering user
- UserIDAuth user = new UserIDAuth("user", "passwrd");
+ UserIDAuth user = new UserIDAuth("user", ReadKeyPasswordTestFactory.getForString("passwrd"));
datasafeServices.userProfile().registerUsingDefaults(user);
// writing into user privatespace, note that with default implementation `file.txt` would be encrypted
datasafeServices.privateService().write(WriteRequest.forDefaultPrivate(user, "file.txt"));
@@ -58,7 +60,7 @@ void testPathEncryptionOverridden(@TempDir Path root) {
class PathEncryptionImplOverridden extends PathEncryptionImpl {
PathEncryptionImplOverridden(PathEncryptionImplRuntimeDelegatable.ArgumentsCaptor captor) {
- super(captor.getBucketPathEncryptionService(), captor.getPrivateKeyService());
+ super(captor.getSymmetricPathEncryptionService(), captor.getPrivateKeyService());
}
@Override
diff --git a/datasafe-examples/datasafe-examples-customize-dagger/pom.xml b/datasafe-examples/datasafe-examples-customize-dagger/pom.xml
index b4c152fbb..ec11444ea 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.6.2
+ 0.7.0
datasafe-examples-customize-dagger
@@ -53,6 +53,13 @@
mockito-core
test
+
+ de.adorsys
+ datasafe-types-api
+ ${project.version}
+ test-jar
+ test
+
diff --git a/datasafe-examples/datasafe-examples-customize-dagger/src/main/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServices.java b/datasafe-examples/datasafe-examples-customize-dagger/src/main/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServices.java
index 2a8bd8d9b..898b265c7 100644
--- a/datasafe-examples/datasafe-examples-customize-dagger/src/main/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServices.java
+++ b/datasafe-examples/datasafe-examples-customize-dagger/src/main/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServices.java
@@ -12,6 +12,7 @@
import de.adorsys.datasafe.business.impl.storage.DefaultStorageModule;
import de.adorsys.datasafe.directory.api.config.DFSConfig;
import de.adorsys.datasafe.directory.api.profile.operations.ProfileOperations;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.EncryptionConfig;
import de.adorsys.datasafe.inbox.api.InboxService;
import de.adorsys.datasafe.privatestore.api.PrivateSpaceService;
import de.adorsys.datasafe.storage.api.StorageService;
@@ -81,6 +82,16 @@ interface Builder {
@BindsInstance
Builder overridesRegistry(@Nullable OverridesRegistry overridesRegistry);
+ /**
+ * All encryption stuff configuration
+ * - which keystore to use
+ * - how to encrypt keys in keystore
+ * - which types of keys to create
+ * - what kind of encryption to use when encrypting document content
+ */
+ @BindsInstance
+ Builder encryption(@Nullable EncryptionConfig encryptionConfig);
+
/**
* @return Customized Datasafe services.
*/
diff --git a/datasafe-examples/datasafe-examples-customize-dagger/src/test/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServiceTest.java b/datasafe-examples/datasafe-examples-customize-dagger/src/test/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServiceTest.java
index 04c0735fd..b1495d90f 100644
--- a/datasafe-examples/datasafe-examples-customize-dagger/src/test/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServiceTest.java
+++ b/datasafe-examples/datasafe-examples-customize-dagger/src/test/java/de/adorsys/datasafe/examples/business/filesystem/CustomlyBuiltDatasafeServiceTest.java
@@ -2,8 +2,10 @@
import de.adorsys.datasafe.directory.impl.profile.config.DefaultDFSConfig;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.storage.impl.fs.FileSystemStorageService;
import de.adorsys.datasafe.types.api.actions.WriteRequest;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
@@ -26,12 +28,12 @@ void testPathEncryptionOverridden(@TempDir Path root) {
Security.addProvider(new BouncyCastleProvider());
// Customized service, we create required module using compile time DI provided by Dagger:
CustomlyBuiltDatasafeServices datasafeServices = DaggerCustomlyBuiltDatasafeServices.builder()
- .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), "secret"))
+ .config(new DefaultDFSConfig(root.toAbsolutePath().toUri(), new ReadStorePassword("secret")))
.storage(new FileSystemStorageService(root))
.build();
// registering user
- UserIDAuth user = new UserIDAuth("user", "passwrd");
+ UserIDAuth user = new UserIDAuth("user", ReadKeyPasswordTestFactory.getForString("passwrd"));
datasafeServices.userProfile().registerUsingDefaults(user);
// writing into user privatespace, note that with default implementation `file.txt` would be encrypted
datasafeServices.privateService().write(WriteRequest.forDefaultPrivate(user, "file.txt"));
diff --git a/datasafe-examples/datasafe-examples-multidfs/pom.xml b/datasafe-examples/datasafe-examples-multidfs/pom.xml
index d93da99e4..498301d45 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.6.2
+ 0.7.0
datasafe-examples-multidfs
@@ -52,6 +52,13 @@
mockito-core
test
+
+ de.adorsys
+ datasafe-types-api
+ ${project.version}
+ test-jar
+ test
+
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 fb443fdd5..a437acb0e 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
@@ -12,10 +12,10 @@
import de.adorsys.datasafe.directory.impl.profile.dfs.BucketAccessServiceImplRuntimeDelegatable;
import de.adorsys.datasafe.directory.impl.profile.dfs.RegexAccessServiceWithStorageCredentialsImpl;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
+import de.adorsys.datasafe.types.api.types.ReadStorePassword;
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;
@@ -25,6 +25,8 @@
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.BasePrivateResource;
import de.adorsys.datasafe.types.api.resource.StorageIdentifier;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
+import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil;
import lombok.SneakyThrows;
import lombok.experimental.Delegate;
import lombok.extern.slf4j.Slf4j;
@@ -37,6 +39,7 @@
import org.testcontainers.shaded.com.google.common.collect.ImmutableMap;
import java.io.OutputStream;
+import java.net.URI;
import java.nio.charset.StandardCharsets;
import java.security.Security;
import java.util.Arrays;
@@ -58,8 +61,8 @@
@Slf4j
class MultiDfsWithCredentialsExampleTest {
- private static final ExecutorService EXECUTOR = ExecutorServiceUtil
- .submitterExecutesOnStarvationExecutingService(4, 4);
+ private static final String REGION = "eu-central-1";
+ private static final ExecutorService EXECUTOR = ExecutorServiceUtil.submitterExecutesOnStarvationExecutingService(4, 4);
private static Map minios = new EnumMap<>(MinioContainerId.class);
private static AmazonS3 directoryClient = null;
@@ -67,18 +70,22 @@ class MultiDfsWithCredentialsExampleTest {
@BeforeAll
static void startup() {
+ // on windows this is required
+ Security.addProvider(new BouncyCastleProvider());
+
// Create all required minio-backed S3 buckets:
Arrays.stream(MinioContainerId.values()).forEach(it -> {
GenericContainer minio = createAndStartMinio(it.getAccessKey(), it.getSecretKey());
minios.put(it, minio);
- String endpoint = "http://127.0.0.1:" + minio.getFirstMappedPort() + "/";
- endpointsByHost.put(it, endpoint + it.getBucketName() + "/");
+ String endpoint = getDockerUri("http://127.0.0.1") + ":" + minio.getFirstMappedPort() + "/";
+ endpointsByHost.put(it, endpoint + REGION + "/" + it.getBucketName() + "/");
log.info("MINIO for {} is available at: {} with access: '{}'/'{}'", it, endpoint, it.getAccessKey(),
it.getSecretKey());
AmazonS3 client = S3ClientFactory.getClient(
endpoint,
+ REGION,
it.getAccessKey(),
it.getSecretKey()
);
@@ -112,7 +119,7 @@ void testMultiUserStorageUserSetup() {
OverridesRegistry registry = new BaseOverridesRegistry();
DefaultDatasafeServices multiDfsDatasafe = DaggerDefaultDatasafeServices
.builder()
- .config(new DFSConfigWithStorageCreds(directoryBucketS3Uri, "PAZZWORT"))
+ .config(new DFSConfigWithStorageCreds(directoryBucketS3Uri, new ReadStorePassword("PAZZWORT")))
// This storage service will route requests to proper bucket based on URI content:
// URI with directoryBucket to `directoryStorage`
// URI with filesBucketOne will get dynamically generated S3Storage
@@ -123,12 +130,13 @@ void testMultiUserStorageUserSetup() {
// bind URI that contains `directoryBucket` to directoryStorage
.put(Pattern.compile(directoryBucketS3Uri + ".+"), directoryStorage)
.put(
- Pattern.compile("http://127.0.0.1.+"),
+ Pattern.compile(getDockerUri("http://127.0.0.1") + ".+"),
// Dynamically creates S3 client with bucket name equal to host value
new UriBasedAuthStorageService(
acc -> new S3StorageService(
S3ClientFactory.getClient(
- acc.getOnlyHostPart().toString(),
+ acc.getEndpoint(),
+ acc.getRegion(),
acc.getAccessKey(),
acc.getSecretKey()
),
@@ -152,7 +160,8 @@ void testMultiUserStorageUserSetup() {
// Depending on path of file - filesBucketOne or filesBucketTwo - requests will be routed to proper bucket.
// I.e. path filesBucketOne/path/to/file will end up in `filesBucketOne` with key path/to/file
// his profile and access credentials for `filesBucketOne` will be in `configBucket`
- UserIDAuth john = new UserIDAuth("john", "secret");
+ UserIDAuth john = new UserIDAuth("john",
+ ReadKeyPasswordTestFactory.getForString("secret"));
// Here, nothing expects John has own storage credentials:
multiDfsDatasafe.userProfile().registerUsingDefaults(john);
@@ -238,4 +247,15 @@ private WithCredentialProvider(Lazy storageKeyStoreOp
this.delegate = new RegexAccessServiceWithStorageCredentialsImpl(storageKeyStoreOperations);
}
}
+
+ @SneakyThrows
+ private static String getDockerUri(String defaultUri) {
+ String dockerHost = System.getenv("DOCKER_HOST");
+ if (dockerHost == null) {
+ return defaultUri;
+ }
+
+ URI dockerUri = new URI(dockerHost);
+ return "http://" + dockerUri.getHost();
+ }
}
diff --git a/datasafe-examples/datasafe-examples-versioned-s3/pom.xml b/datasafe-examples/datasafe-examples-versioned-s3/pom.xml
index 7cc8b4ad7..03eaa4305 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.6.2
+ 0.7.0
datasafe-examples-versioned-s3
@@ -52,6 +52,13 @@
mockito-core
test
+
+ de.adorsys
+ datasafe-types-api
+ ${project.version}
+ test-jar
+ test
+
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 1da625a16..d61e5db87 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,7 +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.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.storage.impl.s3.S3StorageService;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.actions.ReadRequest;
@@ -20,20 +20,23 @@
import de.adorsys.datasafe.types.api.actions.WriteRequest;
import de.adorsys.datasafe.types.api.callback.PhysicalVersionCallback;
import de.adorsys.datasafe.types.api.resource.StorageVersion;
+import de.adorsys.datasafe.types.api.utils.ExecutorServiceUtil;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
+import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
-import org.junit.jupiter.api.io.TempDir;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.containers.wait.strategy.Wait;
import java.io.OutputStream;
+import java.net.URI;
import java.nio.charset.StandardCharsets;
-import java.nio.file.Path;
+import java.security.Security;
import java.util.concurrent.atomic.AtomicReference;
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThat;
@@ -62,7 +65,7 @@ class BaseUserOperationsWithDefaultDatasafeOnVersionedStorageTest {
* This creates CEPH Rados gateway in docker container and creates S3 client for it.
*/
@BeforeAll
- static void createServices(@TempDir Path root) {
+ static void createServices() {
log.info("Starting CEPH");
// Create CEPH container:
cephContainer = new GenericContainer("ceph/daemon")
@@ -83,7 +86,7 @@ static void createServices(@TempDir Path root) {
cephContainer.start();
Integer mappedPort = cephContainer.getMappedPort(8000);
// URL for S3 API/bucket root:
- cephMappedUrl = "http://0.0.0.0" + ":" + mappedPort;
+ cephMappedUrl = getDockerUri("http://0.0.0.0") + ":" + mappedPort;
log.info("Ceph mapped URL: {}", cephMappedUrl);
cephS3 = AmazonS3ClientBuilder.standard()
.withEndpointConfiguration(
@@ -119,7 +122,7 @@ void init() {
// this will create all Datasafe files and user documents under S3 bucket root, we assume that
// S3 versioned bucket was already created
defaultDatasafeServices = DaggerDefaultDatasafeServices.builder()
- .config(new DefaultDFSConfig(cephMappedUrl, "secret"))
+ .config(new DefaultDFSConfig(cephMappedUrl, new ReadStorePassword("secret")))
.storage(new S3StorageService(
cephS3,
VERSIONED_BUCKET_NAME,
@@ -135,6 +138,7 @@ void init() {
@SneakyThrows
void writeFileThenReadLatestAndReadByVersion() {
// BEGIN_SNIPPET:Versioned storage support - writing file and reading back
+ Security.addProvider(new BouncyCastleProvider());
// creating new user
UserIDAuth user = registerUser("john");
@@ -230,8 +234,19 @@ private String writeToPrivate(UserIDAuth user, String path, String fileContent)
}
private UserIDAuth registerUser(String username) {
- UserIDAuth creds = new UserIDAuth(username, "passwrd" + username);
+ UserIDAuth creds = new UserIDAuth(username, ReadKeyPasswordTestFactory.getForString("passwrd" + username));
defaultDatasafeServices.userProfile().registerUsingDefaults(creds);
return creds;
}
+
+ @SneakyThrows
+ private static String getDockerUri(String defaultUri) {
+ String dockerHost = System.getenv("DOCKER_HOST");
+ if (dockerHost == null) {
+ return defaultUri;
+ }
+
+ URI dockerUri = new URI(dockerHost);
+ return "http://" + dockerUri.getHost();
+ }
}
diff --git a/datasafe-examples/pom.xml b/datasafe-examples/pom.xml
index ab3647c78..9becac62f 100644
--- a/datasafe-examples/pom.xml
+++ b/datasafe-examples/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.6.2
+ 0.7.0
4.0.0
diff --git a/datasafe-inbox/datasafe-inbox-api/pom.xml b/datasafe-inbox/datasafe-inbox-api/pom.xml
index 3b4bfce7e..0d852dbfd 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.6.2
+ 0.7.0
datasafe-inbox-api
@@ -20,4 +20,22 @@
${project.version}
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+
+
+ org.projectlombok
+ lombok
+ ${lombok.version}
+
+
+
+
+
+
diff --git a/datasafe-inbox/datasafe-inbox-impl/pom.xml b/datasafe-inbox/datasafe-inbox-impl/pom.xml
index 327b46c1b..af74c0929 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.6.2
+ 0.7.0
datasafe-inbox-impl
diff --git a/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/ListInboxImpl.java b/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/ListInboxImpl.java
index 40238de3c..d732ac74b 100644
--- a/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/ListInboxImpl.java
+++ b/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/ListInboxImpl.java
@@ -37,7 +37,7 @@ public ListInboxImpl(PrivateKeyService keyService, ProfileRetrievalService profi
@Override
public Stream> list(ListRequest request) {
- keyService.documentEncryptionSecretKey(request.getOwner()); // Just checking user has access
+ keyService.validateUserHasAccessOrThrow(request.getOwner());
return listService.list(resolveRelative(request))
.map(it -> fillEncryptedDecryptedSegments(request, it));
}
diff --git a/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/RemoveFromInboxImpl.java b/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/RemoveFromInboxImpl.java
index da372ee07..3ce26a8cc 100644
--- a/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/RemoveFromInboxImpl.java
+++ b/datasafe-inbox/datasafe-inbox-impl/src/main/java/de/adorsys/datasafe/inbox/impl/actions/RemoveFromInboxImpl.java
@@ -31,7 +31,7 @@ public RemoveFromInboxImpl(PrivateKeyService keyService, ResourceResolver resolv
@Override
public void remove(RemoveRequest request) {
- keyService.documentEncryptionSecretKey(request.getOwner()); // Just checking user has access
+ keyService.validateUserHasAccessOrThrow(request.getOwner());
remover.remove(resolver.resolveRelativeToPrivateInbox(request.getOwner(), request.getLocation()));
}
}
diff --git a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ListInboxImplTest.java b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ListInboxImplTest.java
index 40a4e26a8..883f12ad5 100644
--- a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ListInboxImplTest.java
+++ b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ListInboxImplTest.java
@@ -6,12 +6,12 @@
import de.adorsys.datasafe.directory.api.types.UserPublicProfile;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
import de.adorsys.datasafe.inbox.impl.actions.ListInboxImpl;
import de.adorsys.datasafe.storage.api.actions.StorageListService;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.resource.*;
import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.junit.jupiter.api.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
@@ -29,7 +29,7 @@ class ListInboxImplTest extends BaseMockitoTest {
private static final String PATH = "./";
private static final URI ABSOLUTE_PATH = URI.create("s3://absolute");
- private UserIDAuth auth = new UserIDAuth(new UserID(""), new ReadKeyPassword(""));
+ private UserIDAuth auth = new UserIDAuth(new UserID(""), ReadKeyPasswordTestFactory.getForString(""));
@Mock
private PrivateKeyService privateKeyService;
@@ -70,6 +70,6 @@ void list() {
when(listService.list(resource)).thenReturn(Stream.of(absoluteResolvedResource));
assertThat(inbox.list(request)).hasSize(1);
- verify(privateKeyService).documentEncryptionSecretKey(auth);
+ verify(privateKeyService).validateUserHasAccessOrThrow(auth);
}
}
diff --git a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ReadFromInboxImplTest.java b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ReadFromInboxImplTest.java
index 54ed279f7..b5de32d06 100644
--- a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ReadFromInboxImplTest.java
+++ b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/ReadFromInboxImplTest.java
@@ -4,13 +4,13 @@
import de.adorsys.datasafe.encrypiton.api.document.EncryptedDocumentReadService;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
import de.adorsys.datasafe.inbox.impl.actions.ReadFromInboxImpl;
import de.adorsys.datasafe.types.api.actions.ReadRequest;
import de.adorsys.datasafe.types.api.resource.AbsoluteLocation;
import de.adorsys.datasafe.types.api.resource.BasePrivateResource;
import de.adorsys.datasafe.types.api.resource.PrivateResource;
import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
@@ -28,7 +28,7 @@ class ReadFromInboxImplTest extends BaseMockitoTest {
private static final String BYTES = "Hello";
private static final URI ABSOLUTE_PATH = URI.create("s3://absolute");
- private UserIDAuth auth = new UserIDAuth(new UserID(""), new ReadKeyPassword(""));
+ private UserIDAuth auth = new UserIDAuth(new UserID(""), ReadKeyPasswordTestFactory.getForString(""));
@Mock
private ResourceResolver resolver;
diff --git a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/RemoveFromInboxImplTest.java b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/RemoveFromInboxImplTest.java
index 7baf30ce5..08fb41b2e 100644
--- a/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/RemoveFromInboxImplTest.java
+++ b/datasafe-inbox/datasafe-inbox-impl/src/test/java/de/adorsys/datasafe/inbox/api/actions/RemoveFromInboxImplTest.java
@@ -4,12 +4,12 @@
import de.adorsys.datasafe.directory.api.resource.ResourceResolver;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
import de.adorsys.datasafe.inbox.impl.actions.RemoveFromInboxImpl;
import de.adorsys.datasafe.storage.api.actions.StorageRemoveService;
import de.adorsys.datasafe.types.api.actions.RemoveRequest;
import de.adorsys.datasafe.types.api.resource.*;
import de.adorsys.datasafe.types.api.shared.BaseMockitoTest;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import org.junit.jupiter.api.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
@@ -25,7 +25,7 @@ class RemoveFromInboxImplTest extends BaseMockitoTest {
private static final String PATH = "./";
private static final URI ABSOLUTE_PATH = URI.create("s3://absolute");
- private UserIDAuth auth = new UserIDAuth(new UserID(""), new ReadKeyPassword(""));
+ private UserIDAuth auth = new UserIDAuth(new UserID(""), ReadKeyPasswordTestFactory.getForString(""));
@Mock
private PrivateKeyService privateKeyService;
@@ -54,6 +54,6 @@ void remove() {
inbox.remove(request);
verify(removeService).remove(resource);
- verify(privateKeyService).documentEncryptionSecretKey(auth);
+ verify(privateKeyService).validateUserHasAccessOrThrow(auth);
}
}
diff --git a/datasafe-inbox/pom.xml b/datasafe-inbox/pom.xml
index c035a5bf6..84c95e987 100644
--- a/datasafe-inbox/pom.xml
+++ b/datasafe-inbox/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.6.2
+ 0.7.0
4.0.0
diff --git a/datasafe-long-run-tests/README.md b/datasafe-long-run-tests/README.md
index a41a1432e..d49af3632 100644
--- a/datasafe-long-run-tests/README.md
+++ b/datasafe-long-run-tests/README.md
@@ -1,6 +1,65 @@
# Datasafe long run test results
-### 1. Testing procedure description.
+### 1. Testing environment preparation
+Datasafe throughput tests was run on different Amazon EC2 instances. On each instance after creation was installed JDK, maven and git. Then datasafe project was pulled and executed
+[RandomActionsOnDatasafeTest](datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnDatasafeTest.java) which uses one bucket. Test was launched with all combinations of 2, 4, 8 and 16 parallel threads and 100kb, 1mb and 10mb file sizes.
+
+#### Preparation commands for running test
+
+```text
+ssh -i ~/Documents/mhr.pem ec2-user@x.x.x.x
+```
+
+where x.x.x.x - current ip address of ec2 instance.
+
+mhr.pem - key pair file to access remote console by ssh.
+
+Uploading jdk to remote server. jdk-8u221-linux-x64.rpm file should be first downloaded from Oracle website.
+```text
+scp -i ~/Documents/mhr.pem ~/jdk-8u221-linux-x64.rpm ec2-user@3.120.206.136:/home/ec2-user
+```
+Installation of jdk, maven, git.
+```text
+sudo yum install -y jdk-8u221-linux-x64.rpm
+sudo yum install -y git
+sudo yum install -y maven
+```
+
+Datasafe checkout and compilation
+
+```text
+git clone https://github.com/adorsys/datasafe.git
+mvn -DskipTests=true install
+cd datasafe-long-run-tests/datasafe-business-tests-random-actions/
+```
+
+Test execution command.
+
+```text
+mvn -DAWS_ACCESS_KEY="***" \
+ -DAWS_SECRET_KEY="***" \
+ -DAWS_BUCKET="***" \
+ -DAWS_REGION="eu-central-1" \
+ -DtestArgs="-Xmx512m \
+ -Dcom.sun.management.jmxremote.ssl=false \
+ -Dcom.sun.management.jmxremote.authenticate=false \
+ -Dcom.sun.management.jmxremote.port=8090 \
+ -Dcom.sun.management.jmxremote.rmi.port=8090 \
+ -Djava.rmi.server.hostname=127.0.0.1 \
+ -Dcom.sun.management.jmxremote.local.only=false" \
+ -Dtest=RandomActionsOnDatasafeTest test
+```
+
+*** should be changed to real aws s3 bucket name, access key and secret key.
+
+With Xmx parameter used memory could be configured. But due to some memory leaks it was not used and test ran with all available memory.
+
+Enabling jmx monitoring
+```text
+ssh -i ~/Documents/mhr.pem -L 8090:127.0.0.1:8090 ec2-user@x.x.x.x
+```
+
+### 2. Testing procedure description
Tests were done on 6 different aws ec2 instances:
@@ -73,7 +132,7 @@ Threads 100kb 1mb 10mb
2 118.67294777989376 42.735968236780366 6.102306403813942
```
-### 2. Test result charts.
+### 3. Test result charts
1. WRITE operation
@@ -108,7 +167,7 @@ MULTIBUCKET TEST
All tests were made using AES256_CBC Encryption algorithm. On next chart test results using AES256_GCM comparing to AES256_CBC.
![](.images/CBCvsGCM.png)
-### 3. CEPH S3 storage test
+### 4. CEPH S3 storage test
For Ceph testing, cluster consists of osd1, osd2, osd3 t2.xlarge ec2 instances and t2.large instances for ceph monitor and gateway.
@@ -117,3 +176,34 @@ For Ceph testing, cluster consists of osd1, osd2, osd3 t2.xlarge ec2 instances a
Each test was run with 2, 4, 8, 16 threads with single bucket and multi bucket(3 buckets were used) from ec2 c5n.2xlarge(8core) instance.
![](.images/ceph.png)
+
+### 5. Simple Datasafe Adapter test
+There is also [RandomActionsOnSimpleDatasafeAdapterTest](datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnSimpleDatasafeAdapterTest.java) for testing functionality of Simple Datasafe Adapter (used for compatibility with predecessor of datasafe - docusafe).
+To run test you need to have installed jdk and maven.
+If your storage is aws s3 then command will be:
+```text
+mvn -DAWS_ACCESS_KEY="accesskey" \
+ -DAWS_SECRET_KEY="secretkey" \
+ -DAWS_BUCKET="datasafe-bucket" \
+ -DAWS_REGION="eu-central-1" \
+ -DtestArgs="-Xmx256m \ # memory limit for test
+ -DSTORAGE_PROVIDERS="AMAZON" \ # means that external s3 compatible storage will be used. By default local MINIO container is used.
+ -DFIXTURE_SIZE="MEDIUM" \ # available values: MEDIUM (1000 operations), LARGE (10000 operations). By default small fixture is used with 200 operations.
+ -DTHREADS=16 \ # comma separated list of desired number of threads
+ -DFILE_SIZES=100,1024,10240" \ # comma separated list of file sizes used in test
+ -Dtest=RandomActionsOnSimpleDatasafeAdapterTest test
+```
+For Ceph you have to add AWS_URL param. Without this parameter test by default trying to connect to Amazon.
+```text
+mvn -DAWS_ACCESS_KEY="accesskey" \
+ -DAWS_SECRET_KEY="secretkey" \
+ -DAWS_BUCKET="ceph-bucket" \
+ -DAWS_URL="host.ceph.com:7480" \
+ -DtestArgs="-Xmx256m -DSTORAGE_PROVIDERS="AMAZON" -DFIXTURE_SIZE="MEDIUM" -DTHREADS=2,4,8,16 -DFILE_SIZES=100,1024,10240" \
+ -Dtest=RandomActionsOnSimpleDatasafeAdapterTest test
+```
+Test will automatcally run in all combinations of values of threads, file_size and storage providers lists.
+
+For simplifying running this test there is [runSimpleDatasafeAdapterPerformanceTest.sh](../scripts/runSimpleDatasafeAdapterPerformanceTest.sh)
+script which uses credentials from environment variables and by default runs test with small fixture size, 2 threads and 100kb file size.
+AWS_ACCESS_KEY, AWS_SECRET_KEY, AWS_BUCKET, AWS_REGION environment variables have to be set. And for Ceph also AWS_URL has to be set.
\ No newline at end of file
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/parse_script_table.groovy b/datasafe-long-run-tests/datasafe-business-tests-random-actions/parse_script_table.groovy
new file mode 100644
index 000000000..9365bfc57
--- /dev/null
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/parse_script_table.groovy
@@ -0,0 +1,74 @@
+import java.nio.file.Paths
+import groovy.transform.Field
+
+// script expects file name as argument
+rawData = [:]
+currHead = []
+Paths.get(this.args[0]).readLines().forEach { line ->
+ def heading = line =~ /.+with (\d+) threads and (\d+) Kb .+/
+ if (heading.matches()) {
+ currHead = [heading.group(1), heading.group(2)]
+ }
+
+ def dataEntry = line =~ /.+ - ([A-Z]{2,}) .+50=([0-9.]+), 99=([0-9.]+), 90=([0-9.]+), 75=([0-9.]+), 95=([0-9.]+).+throughputPerThread=([0-9.]+).+/
+ if (dataEntry.matches()) {
+ def op = dataEntry.group(1)
+ if (!(op in rawData)) {
+ rawData[op] = [:]
+ }
+
+ def sz = currHead[1]
+ if (!(sz in rawData[op])) {
+ rawData[op][sz] = [:]
+ }
+
+ def nThreads = currHead[0]
+ if (!(nThreads in rawData[op][sz][nThreads])) {
+ rawData[op][sz][nThreads] = [:]
+ }
+
+ def itnum = rawData[op][sz][nThreads].size()
+ rawData[op][sz][nThreads][itnum] = [dataEntry.group(2), dataEntry.group(3), dataEntry.group(4), dataEntry.group(5), dataEntry.group(6), dataEntry.group(7)]
+ }
+}
+
+@Field final String ANSI_RESET = "\u001B[0m"
+@Field final String ANSI_RED = "\u001B[31m"
+@Field final String ANSI_YELLOW = "\u001B[33m"
+
+rawData.forEach { op, byOpValues ->
+ byOpValues.forEach { sz, bySizeValues ->
+ println(ANSI_YELLOW + "${op}" + ANSI_RESET + " operation performance with " + ANSI_YELLOW + "${sz}" + ANSI_RESET +" KB objects")
+ printSeparator()
+ curStr = ["Threads", "Throughput", "Throughput", "p50", "p99", "p90", "p75", "p95"]
+ printString(curStr)
+ curStr = ["", "ops", "MB/s", "", "", "", "", ""]
+ printString(curStr)
+ printSeparator()
+ bySizeValues.forEach { nThreads, byThreadValues ->
+ byThreadValues.forEach { itnum, val ->
+ def opsPerSec = Double.parseDouble(val[5]) * Integer.parseInt(nThreads)
+ String thr_ops = opsPerSec.round(2).toString()
+ String thr_kb = ANSI_RED + (opsPerSec * Integer.parseInt(sz) / 1024).round(2).toString() + ANSI_RESET
+ for (int i=0; i < val.size(); i++) {
+ if (val[i].isDouble() && !val[i].isInteger()) {
+ val[i] = Double.parseDouble(val[i]).round(2).toString()
+ }
+ }
+ curStr = [nThreads, thr_ops, thr_kb, val[0], val[1], val[2], val[3], val[4]]
+ printString(curStr)
+ printSeparator()
+ }
+ }
+ println()
+ }
+}
+
+def printSeparator() {
+ println(("+"+"-".multiply(10)).multiply(8)+"+")
+}
+
+def printString(List params) {
+ params.each { print '|' + it.center(it.contains(ANSI_RESET) ? 19 : 10) }
+ println("|")
+}
\ No newline at end of file
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 e492293e3..f68745632 100644
--- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/pom.xml
@@ -5,7 +5,7 @@
datasafe-long-run-tests
de.adorsys
- 0.6.2
+ 0.7.0
4.0.0
@@ -175,6 +175,7 @@
org.kie:kie-api
org.kie:kie-internal
com.amazonaws
+ org.bouncycastle
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 1c0412748..494329efe 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
@@ -5,6 +5,7 @@
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.types.api.types.ReadStorePassword;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.junit.jupiter.params.ParameterizedTest;
@@ -44,7 +45,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo
private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) {
return DaggerDefaultDatasafeServices.builder()
- .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT"))
+ .config(new DefaultDFSConfig(descriptor.getLocation(), new ReadStorePassword("PAZZWORT")))
.storage(descriptor.getStorageService().get())
.build();
}
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java
index 460ff43db..5a016943b 100644
--- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/RandomActionsOnMultiBucketTest.java
@@ -5,6 +5,7 @@
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.types.api.types.ReadStorePassword;
import de.adorsys.datasafe.storage.api.UserBasedDelegatingStorage;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.condition.EnabledIfSystemProperty;
@@ -41,7 +42,7 @@ private DefaultDatasafeServices datasafeServices(StorageDescriptor descriptor) {
return DaggerDefaultDatasafeServices
.builder()
- .config(new DefaultDFSConfig(descriptor.getLocation(), "PAZZWORT"))
+ .config(new DefaultDFSConfig(descriptor.getLocation(), new ReadStorePassword("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 3e2775d72..5cfa089a9 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
@@ -7,8 +7,11 @@
import de.adorsys.datasafe.directory.api.types.*;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.encrypiton.api.types.encryption.MutableEncryptionConfig;
import de.adorsys.datasafe.inbox.api.InboxService;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingInputStream;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingOutputStream;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingStream;
import de.adorsys.datasafe.privatestore.api.PrivateSpaceService;
import de.adorsys.datasafe.simple.adapter.api.SimpleDatasafeService;
import de.adorsys.datasafe.simple.adapter.api.exceptions.SimpleAdapterException;
@@ -20,6 +23,7 @@
import de.adorsys.datasafe.types.api.actions.RemoveRequest;
import de.adorsys.datasafe.types.api.actions.WriteRequest;
import de.adorsys.datasafe.types.api.resource.*;
+import de.adorsys.datasafe.types.api.types.ReadKeyPassword;
import lombok.RequiredArgsConstructor;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.junit.jupiter.params.ParameterizedTest;
@@ -50,7 +54,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo
StatisticService statisticService = new StatisticService();
executeTest(
- smallSimpleDocusafeAdapterFixture(),
+ getSimpleDatasafeAdapterFixture(),
descriptor.getName(),
filesizeInKb,
threadCount,
@@ -63,7 +67,7 @@ void testRandomActionsParallelThreads(StorageDescriptor descriptor, int threadCo
private DefaultDatasafeServices datasafeServicesFromSimpleDatasafeAdapter(StorageDescriptor descriptor) {
SimpleDatasafeService datasafeService = new SimpleDatasafeServiceImpl(
- DFSTestCredentialsFactory.credentials(descriptor)
+ DFSTestCredentialsFactory.credentials(descriptor), new MutableEncryptionConfig()
);
return new DefaultDatasafeServices() {
@@ -71,31 +75,37 @@ private DefaultDatasafeServices datasafeServicesFromSimpleDatasafeAdapter(Storag
public PrivateSpaceService privateService() {
return new PrivateSpaceService() {
@Override
- public Stream> list(ListRequest request) {
- return datasafeService.list(
+ public PasswordClearingStream> list(ListRequest request) {
+ return new PasswordClearingStream<>(datasafeService.list(
request.getOwner(),
asFqnDir(request.getLocation()),
ListRecursiveFlag.TRUE
- ).stream().map(it -> new AbsoluteLocation<>(asResolved(descriptor.getLocation(), it)));
+ ).stream().map(it -> new AbsoluteLocation<>(asResolved(descriptor.getLocation(), it))), request.getOwner().getReadKeyPassword());
}
@Override
- public InputStream read(ReadRequest request) {
- return new ByteArrayInputStream(
+ public PasswordClearingInputStream read(ReadRequest request) {
+ return new PasswordClearingInputStream(new ByteArrayInputStream(
datasafeService.readDocument(
request.getOwner(),
asFqnDoc(request.getLocation())).getDocumentContent().getValue()
- );
+ ), request.getOwner().getReadKeyPassword());
}
@Override
public void remove(RemoveRequest request) {
datasafeService.deleteFolder(request.getOwner(), asFqnDir(request.getLocation()));
+ request.getOwner().getReadKeyPassword().clear();
+ }
+
+ @Override
+ public void makeSurePasswordClearanceIsDone() {
+
}
@Override
- public OutputStream write(WriteRequest request) {
- return new PutBlobOnClose(asFqnDoc(request.getLocation()), request.getOwner(), datasafeService);
+ public PasswordClearingOutputStream write(WriteRequest request) {
+ return new PasswordClearingOutputStream(new PutBlobOnClose(asFqnDoc(request.getLocation()), request.getOwner(), datasafeService), request.getOwner().getReadKeyPassword());
}
@RequiredArgsConstructor
@@ -217,6 +227,11 @@ public void deregisterStorageCredentials(UserIDAuth user, StorageIdentifier stor
throw new IllegalStateException("Not implemented");
}
+ @Override
+ public Set listRegisteredStorageCredentials(UserIDAuth user) {
+ throw new IllegalStateException("Not implemented");
+ }
+
@Override
public boolean userExists(UserID ofUser) {
throw new IllegalStateException("Not implemented");
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 4e061e37c..30b422d2b 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
@@ -16,6 +16,7 @@
import de.adorsys.datasafe.privatestore.api.PrivateSpaceService;
import de.adorsys.datasafe.teststorage.WithStorageProvider;
import lombok.SneakyThrows;
+import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.ValueSource;
@@ -24,6 +25,7 @@
import java.io.Reader;
import java.nio.charset.StandardCharsets;
+import java.security.Security;
import java.util.*;
import java.util.concurrent.*;
import java.util.stream.Collectors;
@@ -69,6 +71,7 @@ public abstract class BaseRandomActions extends WithStorageProvider {
@BeforeEach
void prepare() {
+ Security.addProvider(new BouncyCastleProvider());
// Enable logging obfuscation
System.setProperty("SECURE_LOGS", "on");
System.setProperty("SECURE_SENSITIVE", "on");
@@ -77,13 +80,17 @@ void prepare() {
protected Fixture getFixture() {
switch(FIXTURE_SIZE) {
case "MEDIUM" : return fixture("fixture/fixture_1000_ops.json");
- case "BIG" : return fixture("fixture/fixture_10000_ops.json");
+ case "LARGE" : return fixture("fixture/fixture_10000_ops.json");
default : return fixture("fixture/fixture_200_ops.json");
}
}
- protected Fixture smallSimpleDocusafeAdapterFixture() {
- return fixture("fixture/fixture_simple_datasafe_200_ops.json");
+ protected Fixture getSimpleDatasafeAdapterFixture() {
+ switch(FIXTURE_SIZE) {
+ case "MEDIUM" : return fixture("fixture/fixture_simple_datasafe_1000_ops.json");
+ case "LARGE" : return fixture("fixture/fixture_simple_datasafe_10000_ops.json");
+ default : return fixture("fixture/fixture_simple_datasafe_200_ops.json");
+ }
}
@SneakyThrows
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/dto/TestUser.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/dto/TestUser.java
index ac2c82f8a..2fbcd7a60 100644
--- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/dto/TestUser.java
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/fixture/dto/TestUser.java
@@ -2,7 +2,7 @@
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
-import de.adorsys.datasafe.encrypiton.api.types.keystore.ReadKeyPassword;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -20,6 +20,6 @@ public class TestUser {
public TestUser(String username, String password) {
this.username = username;
this.password = password;
- this.auth = new UserIDAuth(new UserID(username), new ReadKeyPassword(password));
+ this.auth = new UserIDAuth(new UserID(username), ReadKeyPasswordTestFactory.getForString(password));
}
}
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/services/OperationExecutor.java b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/services/OperationExecutor.java
index e9165109e..a63398f14 100644
--- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/services/OperationExecutor.java
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/java/de/adorsys/datasafe/business/impl/e2e/randomactions/framework/services/OperationExecutor.java
@@ -18,6 +18,7 @@
import de.adorsys.datasafe.types.api.resource.ResolvedResource;
import de.adorsys.datasafe.types.api.resource.Uri;
import de.adorsys.datasafe.types.api.shared.ContentGenerator;
+import de.adorsys.datasafe.types.api.utils.ReadKeyPasswordTestFactory;
import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
@@ -130,7 +131,7 @@ private Stream generateValidatingOperations(String execId,
@SneakyThrows
private void doCreate(Operation oper) {
- UserIDAuth auth = new UserIDAuth(oper.getUserId(), oper.getUserId());
+ UserIDAuth auth = new UserIDAuth(oper.getUserId(), ReadKeyPasswordTestFactory.getForString(oper.getUserId()));
registrationService.registerUsingDefaults(auth);
users.put(auth.getUserID().getValue(), new UserSpec(auth, new ContentGenerator(fileContentSize)));
}
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_10000_ops.json b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_10000_ops.json
new file mode 100644
index 000000000..b3ae16a2a
--- /dev/null
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_10000_ops.json
@@ -0,0 +1,92123 @@
+{
+ "operations": [
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/important/presentation.ppt",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/documents/document.pdf",
+ "home/documents/document.pdf",
+ "home/important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "important/presentation.ppt",
+ "presentation.ppt",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/presentation.ppt",
+ "presentation.ppt",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/documents/document.pdf",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf",
+ "home/document.pdf",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "home/important/document.pdf",
+ "documents/important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/balance.xlsx",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "balance.xlsx",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "presentation.ppt",
+ "important/documents/document.pdf",
+ "home/file.txt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "presentation.ppt",
+ "important/documents/document.pdf",
+ "home/file.txt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "important/documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/important/presentation.ppt",
+ "important/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "home/document.pdf",
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/document.pdf",
+ "presentation.ppt",
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/home/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/documents/presentation.ppt",
+ "important/documents/document.pdf",
+ "balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/documents/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "presentation.ppt",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/balance.xlsx",
+ "file.txt",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "documents/documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "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/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "important/file.txt",
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "document.pdf",
+ "home/document.pdf",
+ "important/file.txt",
+ "home/important/document.pdf",
+ "home/documents/balance.xlsx",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "document.pdf",
+ "home/document.pdf",
+ "important/file.txt",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "important/file.txt",
+ "presentation.ppt",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt",
+ "file.txt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/important/document.pdf",
+ "documents/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "home/important/document.pdf",
+ "important/important/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/documents/document.pdf",
+ "home/important/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf",
+ "presentation.ppt",
+ "important/important/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf",
+ "presentation.ppt",
+ "important/important/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/file.txt",
+ "presentation.ppt",
+ "important/important/document.pdf",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "important/important/document.pdf",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "file.txt",
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "file.txt",
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/file.txt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "file.txt",
+ "important/home/balance.xlsx",
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "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": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "important/presentation.ppt",
+ "documents/document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt",
+ "home/balance.xlsx",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "home/documents/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/home/document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/file.txt",
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/balance.xlsx",
+ "home/documents/file.txt",
+ "documents/home/file.txt",
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/balance.xlsx",
+ "documents/home/presentation.ppt",
+ "home/documents/file.txt",
+ "documents/home/file.txt",
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf",
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "file.txt",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/important/document.pdf",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/home/document.pdf",
+ "documents/important/file.txt",
+ "important/important/balance.xlsx",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/presentation.ppt",
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/balance.xlsx",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "important/presentation.ppt",
+ "file.txt",
+ "documents/important/file.txt",
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/presentation.ppt",
+ "file.txt",
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/document.pdf",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "home/documents/balance.xlsx",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "home/document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx",
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "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-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "home/home/balance.xlsx",
+ "file.txt",
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "important/documents/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "important/file.txt",
+ "home/home/balance.xlsx",
+ "file.txt",
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/file.txt",
+ "home/balance.xlsx",
+ "presentation.ppt",
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "documents/important/document.pdf",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "documents/important/document.pdf",
+ "home/balance.xlsx",
+ "balance.xlsx",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "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": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/documents/file.txt",
+ "file.txt",
+ "documents/documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt",
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/document.pdf",
+ "important/home/balance.xlsx",
+ "important/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/file.txt",
+ "documents/balance.xlsx",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "home/file.txt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt",
+ "balance.xlsx",
+ "important/document.pdf",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "file.txt",
+ "documents/documents/presentation.ppt",
+ "balance.xlsx",
+ "important/document.pdf",
+ "documents/home/document.pdf",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "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-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "home/balance.xlsx",
+ "home/file.txt",
+ "balance.xlsx",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "documents/balance.xlsx",
+ "documents/document.pdf",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/balance.xlsx",
+ "documents/presentation.ppt",
+ "home/home/presentation.ppt",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/file.txt",
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/file.txt",
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt",
+ "important/important/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "important/important/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "important/file.txt",
+ "important/document.pdf",
+ "balance.xlsx",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt",
+ "presentation.ppt",
+ "important/file.txt",
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "home/document.pdf",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx",
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/documents/document.pdf",
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/file.txt",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt",
+ "documents/important/balance.xlsx",
+ "documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "important/file.txt",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/important/file.txt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/important/file.txt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/file.txt",
+ "documents/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt",
+ "home/documents/balance.xlsx",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/presentation.ppt",
+ "important/presentation.ppt",
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/balance.xlsx",
+ "file.txt",
+ "important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "documents/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt",
+ "file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "home/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt",
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "home/home/presentation.ppt",
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/balance.xlsx",
+ "home/balance.xlsx",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "home/home/presentation.ppt",
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "presentation.ppt",
+ "file.txt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt",
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "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": [
+ "documents/home/presentation.ppt",
+ "presentation.ppt",
+ "important/file.txt",
+ "file.txt",
+ "home/important/file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "presentation.ppt",
+ "important/file.txt",
+ "file.txt",
+ "home/important/file.txt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "documents/important/file.txt",
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "home/home/presentation.ppt",
+ "documents/document.pdf",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "documents/file.txt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "important/presentation.ppt",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/documents/balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "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-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/documents/balance.xlsx",
+ "important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt",
+ "documents/presentation.ppt",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt",
+ "file.txt",
+ "home/home/file.txt",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/presentation.ppt",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "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": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/presentation.ppt",
+ "documents/balance.xlsx",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/balance.xlsx",
+ "presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/documents/presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/home/file.txt",
+ "important/documents/balance.xlsx",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "important/documents/presentation.ppt",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "document.pdf",
+ "file.txt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/home/balance.xlsx",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/",
+ "result": {
+ "dirContent": [
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "file.txt",
+ "important/important/document.pdf",
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/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/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "home/file.txt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/balance.xlsx",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "documents/important/presentation.ppt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "home/important/presentation.ppt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/presentation.ppt",
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/file.txt",
+ "home/important/document.pdf",
+ "file.txt",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": [
+ "important/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/file.txt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "documents/important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "home/file.txt",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt",
+ "balance.xlsx",
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "important/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/documents/balance.xlsx",
+ "balance.xlsx",
+ "important/important/presentation.ppt",
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "important/home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a81ddf01-fd7f-4f36-bf69-96e269c09cbd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/documents/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf",
+ "important/important/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/documents/balance.xlsx",
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf",
+ "documents/presentation.ppt",
+ "important/documents/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ }
+ ],
+ "userPrivateSpace": {
+ "user-1": {},
+ "user-0": {
+ "balance.xlsx": {
+ "id": "fa56329b-a5a6-4720-9ed1-518b9ef6340d"
+ }
+ },
+ "user-5": {},
+ "user-4": {
+ "presentation.ppt": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ },
+ "user-3": {},
+ "user-2": {
+ "home/document.pdf": {
+ "id": "87e6fc3d-4586-442b-b0c3-46873fdd3cca"
+ },
+ "important/document.pdf": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ },
+ "user-9": {
+ "document.pdf": {
+ "id": "62f86682-a84f-4226-9794-c6faa8718090"
+ }
+ },
+ "user-8": {
+ "important/file.txt": {
+ "id": "167fd37d-5051-4ae4-81a3-c1472a5b7fe2"
+ }
+ },
+ "user-7": {
+ "documents/important/document.pdf": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "documents/presentation.ppt": {
+ "id": "a4c68936-40c4-47fe-bd05-d14430cad276"
+ },
+ "documents/document.pdf": {
+ "id": "a95da826-3102-4782-98df-892e8007d8d6"
+ },
+ "important/documents/presentation.ppt": {
+ "id": "3d36640c-56cb-4e7b-abee-b10afe31c5ab"
+ },
+ "balance.xlsx": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ }
+ },
+ "user-6": {
+ "presentation.ppt": {
+ "id": "7c7fb450-2767-4d7e-94b3-10823cdea7c5"
+ },
+ "home/home/balance.xlsx": {
+ "id": "292056fc-1c28-471f-99c2-fe29fa040309"
+ }
+ }
+ },
+ "userPublicSpace": {
+ "user-1": {},
+ "user-0": {},
+ "user-5": {},
+ "user-4": {},
+ "user-3": {},
+ "user-2": {},
+ "user-9": {},
+ "user-8": {},
+ "user-7": {},
+ "user-6": {}
+ }
+}
\ No newline at end of file
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_1000_ops.json b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_1000_ops.json
new file mode 100644
index 000000000..b8720ca81
--- /dev/null
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_1000_ops.json
@@ -0,0 +1,9283 @@
+{
+ "operations": [
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt",
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "important/important/presentation.ppt",
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/documents/document.pdf",
+ "home/documents/document.pdf",
+ "home/important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "important/presentation.ppt",
+ "presentation.ppt",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "presentation.ppt",
+ "documents/document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt",
+ "documents/presentation.ppt",
+ "presentation.ppt",
+ "home/home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "home/documents/document.pdf",
+ "file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/",
+ "result": {
+ "dirContent": [
+ "home/documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "documents/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/important/document.pdf",
+ "home/document.pdf",
+ "presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "documents/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/",
+ "result": {
+ "dirContent": [
+ "documents/documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "important/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/important/file.txt"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/file.txt",
+ "result": {
+ "dirContent": [
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": [
+ "document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/file.txt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/file.txt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/",
+ "result": {
+ "dirContent": [
+ "important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/home/file.txt"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "important/important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/home/document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/important/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "home/document.pdf",
+ "important/presentation.ppt",
+ "home/important/document.pdf",
+ "documents/important/presentation.ppt",
+ "important/important/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "documents/balance.xlsx",
+ "documents/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "home/presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/important/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "dirContent": [
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/balance.xlsx",
+ "documents/balance.xlsx",
+ "presentation.ppt",
+ "important/important/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/presentation.ppt",
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/home/balance.xlsx"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/file.txt",
+ "result": {
+ "dirContent": [
+ "documents/documents/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/document.pdf",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "important/documents/document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/",
+ "result": {
+ "dirContent": [
+ "important/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "documents/home/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "documents/presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/document.pdf",
+ "balance.xlsx",
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/home/",
+ "result": {
+ "dirContent": [
+ "home/home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "important/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "documents/file.txt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/",
+ "result": {
+ "dirContent": [
+ "documents/home/document.pdf"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "important/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ }
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "home/important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/home/"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/important/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "location": "documents/home/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "d649d9c4-ecc9-410a-b6f8-3510710eb368"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/home/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ }
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "58326dc1-27c9-4ec7-884a-045db4a3b8de"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "important/important/balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "35083c31-6b7c-43c3-9521-b256d529fb33"
+ },
+ "location": "documents/documents/file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "location": "home/important/document.pdf"
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/important/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/documents/"
+ }
+ ],
+ "userPrivateSpace": {
+ "user-1": {
+ "home/important/document.pdf": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ },
+ "user-0": {
+ "home/documents/document.pdf": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "important/important/balance.xlsx": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "balance.xlsx": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ }
+ },
+ "user-5": {},
+ "user-4": {
+ "documents/home/file.txt": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ },
+ "documents/file.txt": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "home/important/document.pdf": {
+ "id": "12e680c3-22ce-469f-b62a-2bc37b194134"
+ },
+ "file.txt": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ },
+ "documents/home/balance.xlsx": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ },
+ "user-3": {
+ "file.txt": {
+ "id": "77d01c9c-4631-4e07-9d9a-4cc1fdbc1a67"
+ }
+ },
+ "user-2": {
+ "home/home/balance.xlsx": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "home/documents/balance.xlsx": {
+ "id": "2beec6d8-e1f6-4480-9303-e8201399b0b8"
+ },
+ "balance.xlsx": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ },
+ "user-9": {
+ "balance.xlsx": {
+ "id": "7d315536-f793-45d5-a309-81c1e03545d8"
+ }
+ },
+ "user-8": {
+ "home/home/presentation.ppt": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "presentation.ppt": {
+ "id": "75cc14ad-8345-44b7-8a11-ad2cebc501c6"
+ },
+ "important/documents/document.pdf": {
+ "id": "69900fe6-5fdd-4933-826f-49190e9d4b2b"
+ },
+ "home/file.txt": {
+ "id": "d31ad19c-860e-40d7-b798-2aeecad10120"
+ }
+ },
+ "user-7": {},
+ "user-6": {}
+ },
+ "userPublicSpace": {
+ "user-1": {},
+ "user-0": {},
+ "user-5": {},
+ "user-4": {},
+ "user-3": {},
+ "user-2": {},
+ "user-9": {},
+ "user-8": {},
+ "user-7": {},
+ "user-6": {}
+ }
+}
\ No newline at end of file
diff --git a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_200_ops.json b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_200_ops.json
index 0c7115fd7..ccddef502 100644
--- a/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_200_ops.json
+++ b/datasafe-long-run-tests/datasafe-business-tests-random-actions/src/test/resources/fixture/fixture_simple_datasafe_200_ops.json
@@ -5,7 +5,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
},
"location": "balance.xlsx"
},
@@ -14,7 +14,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "6612de12-3a82-4213-b3f9-2a618003c1b0"
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
},
"location": "important/presentation.ppt"
},
@@ -34,7 +34,7 @@
"location": "balance.xlsx",
"result": {
"content": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
}
}
},
@@ -45,7 +45,7 @@
"location": "important/presentation.ppt",
"result": {
"content": {
- "id": "6612de12-3a82-4213-b3f9-2a618003c1b0"
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
}
}
},
@@ -54,7 +54,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "e1bb97b1-085e-486e-be5e-670d5b3a777a"
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
},
"location": "home/home/balance.xlsx"
},
@@ -63,7 +63,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "important/important/presentation.ppt"
},
@@ -83,7 +83,7 @@
"location": "important/presentation.ppt",
"result": {
"content": {
- "id": "6612de12-3a82-4213-b3f9-2a618003c1b0"
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
}
}
},
@@ -94,7 +94,7 @@
"location": "home/home/balance.xlsx",
"result": {
"content": {
- "id": "e1bb97b1-085e-486e-be5e-670d5b3a777a"
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
}
}
},
@@ -109,7 +109,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "documents/home/balance.xlsx"
},
@@ -118,7 +118,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
},
"location": "documents/home/file.txt"
},
@@ -127,7 +127,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "cd6a2a0b-28ee-473b-a4bd-4236fb2cef71"
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
},
"location": "important/documents/file.txt"
},
@@ -178,7 +178,7 @@
"location": "important/important/presentation.ppt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -189,7 +189,7 @@
"location": "documents/home/file.txt",
"result": {
"content": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
}
}
},
@@ -200,7 +200,7 @@
"location": "important/documents/file.txt",
"result": {
"content": {
- "id": "cd6a2a0b-28ee-473b-a4bd-4236fb2cef71"
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
}
}
},
@@ -221,7 +221,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "cd6a2a0b-28ee-473b-a4bd-4236fb2cef71"
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
},
"location": "important/balance.xlsx"
},
@@ -259,7 +259,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "e1bb97b1-085e-486e-be5e-670d5b3a777a"
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
},
"location": "home/presentation.ppt"
},
@@ -268,7 +268,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "943b276b-a073-4141-9e5e-cad489d1f65b"
+ "id": "bddf3814-1bc9-442b-82fa-4bed9cbf8ef2"
},
"location": "balance.xlsx"
},
@@ -277,7 +277,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "documents/presentation.ppt"
},
@@ -286,7 +286,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "file.txt"
},
@@ -295,7 +295,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
},
"location": "documents/documents/presentation.ppt"
},
@@ -315,7 +315,7 @@
"location": "file.txt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -330,7 +330,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "documents/home/file.txt"
},
@@ -352,7 +352,7 @@
"location": "home/presentation.ppt",
"result": {
"content": {
- "id": "e1bb97b1-085e-486e-be5e-670d5b3a777a"
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
}
}
},
@@ -363,7 +363,7 @@
"location": "file.txt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -378,7 +378,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "document.pdf"
},
@@ -393,7 +393,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "943b276b-a073-4141-9e5e-cad489d1f65b"
+ "id": "bddf3814-1bc9-442b-82fa-4bed9cbf8ef2"
},
"location": "balance.xlsx"
},
@@ -417,7 +417,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "943b276b-a073-4141-9e5e-cad489d1f65b"
+ "id": "bddf3814-1bc9-442b-82fa-4bed9cbf8ef2"
},
"location": "home/file.txt"
},
@@ -426,7 +426,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "documents/file.txt"
},
@@ -448,7 +448,7 @@
"location": "document.pdf",
"result": {
"content": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
}
}
},
@@ -459,7 +459,7 @@
"location": "documents/documents/presentation.ppt",
"result": {
"content": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
}
}
},
@@ -474,7 +474,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "cd6a2a0b-28ee-473b-a4bd-4236fb2cef71"
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
},
"location": "document.pdf"
},
@@ -483,7 +483,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
},
"location": "documents/home/balance.xlsx"
},
@@ -492,7 +492,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
},
"location": "presentation.ppt"
},
@@ -501,7 +501,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "6612de12-3a82-4213-b3f9-2a618003c1b0"
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
},
"location": "home/important/document.pdf"
},
@@ -510,7 +510,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "943b276b-a073-4141-9e5e-cad489d1f65b"
+ "id": "bddf3814-1bc9-442b-82fa-4bed9cbf8ef2"
},
"location": "balance.xlsx"
},
@@ -519,7 +519,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "presentation.ppt"
},
@@ -528,7 +528,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "presentation.ppt"
},
@@ -550,7 +550,7 @@
"location": "important/important/presentation.ppt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -561,7 +561,7 @@
"location": "file.txt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -572,7 +572,7 @@
"location": "document.pdf",
"result": {
"content": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
}
}
},
@@ -583,7 +583,7 @@
"location": "presentation.ppt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -598,7 +598,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
},
"location": "documents/document.pdf"
},
@@ -609,7 +609,7 @@
"location": "documents/document.pdf",
"result": {
"content": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
}
}
},
@@ -630,7 +630,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
},
"location": "document.pdf"
},
@@ -639,7 +639,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "file.txt"
},
@@ -648,7 +648,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "file.txt"
},
@@ -657,7 +657,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
},
"location": "documents/documents/document.pdf"
},
@@ -692,7 +692,7 @@
"location": "presentation.ppt",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -703,7 +703,7 @@
"location": "file.txt",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -720,7 +720,7 @@
"location": "important/important/presentation.ppt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -729,7 +729,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "documents/documents/balance.xlsx"
},
@@ -738,7 +738,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "documents/home/document.pdf"
},
@@ -747,7 +747,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "important/important/file.txt"
},
@@ -756,7 +756,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"location": "home/file.txt"
},
@@ -765,7 +765,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "important/documents/document.pdf"
},
@@ -818,7 +818,7 @@
"location": "documents/documents/presentation.ppt",
"result": {
"content": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
}
}
},
@@ -833,7 +833,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
},
"location": "home/balance.xlsx"
},
@@ -844,7 +844,7 @@
"location": "home/balance.xlsx",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -861,7 +861,7 @@
"location": "important/documents/document.pdf",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -870,7 +870,7 @@
"type": "WRITE",
"storageType": "PRIVATE",
"contentId": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
},
"location": "home/documents/presentation.ppt"
},
@@ -912,7 +912,7 @@
"location": "home/balance.xlsx",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -923,7 +923,7 @@
"location": "documents/home/document.pdf",
"result": {
"content": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
}
}
},
@@ -934,7 +934,7 @@
"location": "home/file.txt",
"result": {
"content": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
}
},
@@ -945,7 +945,7 @@
"location": "important/documents/document.pdf",
"result": {
"content": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
}
},
@@ -955,88 +955,1037 @@
"storageType": "PRIVATE",
"location": "documents/documents/"
},
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
+ },
+ "location": "important/documents/file.txt"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/important/document.pdf",
+ "result": {
+ "content": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ }
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/important/"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "important/documents/presentation.ppt"
+ },
+ {
+ "userId": "user-9",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt",
+ "home/file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "content": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-3",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-2",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "important/documents/"
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "document.pdf",
+ "result": {
+ "content": {
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
+ }
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
+ },
+ "location": "documents/important/file.txt"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/home/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-6",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "bddf3814-1bc9-442b-82fa-4bed9cbf8ef2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "home/balance.xlsx",
+ "result": {
+ "dirContent": [
+ "home/balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ },
+ "location": "important/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
+ },
+ "location": "documents/home/presentation.ppt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": [
+ "file.txt"
+ ]
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/"
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/balance.xlsx",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
+ },
+ "location": "home/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "documents/document.pdf"
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "documents/documents/document.pdf",
+ "home/documents/document.pdf",
+ "home/important/document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ },
+ "location": "home/documents/balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "home/file.txt"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/document.pdf",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "content": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/documents/balance.xlsx",
+ "result": {
+ "content": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ }
+ }
+ },
+ {
+ "userId": "user-7",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "home/documents/"
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": ""
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-3",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "important/balance.xlsx"
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "important/presentation.ppt",
+ "result": {
+ "content": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ }
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "DELETE",
+ "storageType": "PRIVATE",
+ "location": "documents/home/"
+ },
+ {
+ "userId": "user-4",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-0",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "home/important/file.txt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "home/home/presentation.ppt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-0",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "documents/document.pdf",
+ "result": {
+ "content": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-5",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-2",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "file.txt"
+ },
+ {
+ "userId": "user-3",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "documents/presentation.ppt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "presentation.ppt",
+ "result": {
+ "dirContent": [
+ "presentation.ppt"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
{
"userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
"type": "DELETE",
"storageType": "PRIVATE",
- "location": "important/important/"
+ "location": ""
+ },
+ {
+ "userId": "user-7",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "location": "document.pdf"
+ },
+ {
+ "userId": "user-6",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
+ },
+ "location": "balance.xlsx"
+ },
+ {
+ "userId": "user-8",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "important/presentation.ppt",
+ "home/balance.xlsx",
+ "balance.xlsx"
+ ]
+ }
},
{
"userId": "user-1",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "home/home/presentation.ppt",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-4",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "file.txt",
+ "result": {
+ "content": {
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
+ }
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
+ }
+ }
+ },
+ {
+ "userId": "user-0",
"type": "DELETE",
"storageType": "PRIVATE",
- "location": "important/documents/"
+ "location": "home/important/"
+ },
+ {
+ "userId": "user-0",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "home/file.txt",
+ "result": {
+ "content": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ }
+ }
+ },
+ {
+ "userId": "user-8",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "presentation.ppt"
+ },
+ {
+ "userId": "user-1",
+ "type": "WRITE",
+ "storageType": "PRIVATE",
+ "contentId": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "location": "home/documents/document.pdf"
+ },
+ {
+ "userId": "user-7",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "document.pdf",
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-9",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "important/home/file.txt",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-5",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": [
+ "balance.xlsx"
+ ]
+ }
+ },
+ {
+ "userId": "user-2",
+ "type": "LIST",
+ "storageType": "PRIVATE",
+ "location": "",
+ "result": {
+ "dirContent": []
+ }
+ },
+ {
+ "userId": "user-6",
+ "type": "READ",
+ "storageType": "PRIVATE",
+ "location": "balance.xlsx",
+ "result": {
+ "content": {
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
+ }
+ }
}
],
"userPrivateSpace": {
- "user-1": {},
+ "user-1": {
+ "home/home/presentation.ppt": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "home/documents/document.pdf": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
+ "balance.xlsx": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ }
+ },
"user-0": {
+ "important/presentation.ppt": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
+ },
"presentation.ppt": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
"home/file.txt": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
}
},
"user-5": {
- "documents/documents/document.pdf": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
- },
- "home/important/document.pdf": {
- "id": "6612de12-3a82-4213-b3f9-2a618003c1b0"
- },
"balance.xlsx": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
}
},
"user-4": {
- "file.txt": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "document.pdf": {
+ "id": "f0b369bf-5800-4413-8c8d-efeb6f01dfef"
+ },
+ "presentation.ppt": {
+ "id": "0da90c49-ee7d-4711-bdd9-3c27693c2739"
+ },
+ "documents/document.pdf": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
},
- "documents/home/document.pdf": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "file.txt": {
+ "id": "65d8cada-2213-4f2b-94b3-c542f8f0cad4"
}
},
"user-3": {
- "home/documents/presentation.ppt": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
- }
- },
- "user-2": {
+ "important/balance.xlsx": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
"presentation.ppt": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "id": "5bcdf706-bc73-4b1c-bc2d-0eaaa7b794f1"
}
},
- "user-9": {
- "document.pdf": {
- "id": "bb004a4e-b5fa-4e91-8103-a9cca394565d"
+ "user-2": {},
+ "user-9": {},
+ "user-8": {
+ "important/presentation.ppt": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
},
- "file.txt": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "home/balance.xlsx": {
+ "id": "90f6c20b-569f-48c3-a522-765b743e12d8"
},
- "documents/home/balance.xlsx": {
- "id": "6525b867-77a1-4070-870f-9ec5a2de8dec"
- }
- },
- "user-8": {
- "document.pdf": {
- "id": "768f827b-2b68-4580-8fd2-9c94ef825574"
+ "presentation.ppt": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
},
- "important/important/presentation.ppt": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
+ "balance.xlsx": {
+ "id": "a67411e3-1e0e-4729-869d-b99b66fde9fd"
}
},
"user-7": {
- "home/balance.xlsx": {
- "id": "521b937b-c355-4c96-85d8-d0e8be3bf069"
+ "document.pdf": {
+ "id": "aac4d0d0-efb1-49bb-9759-90550cef00d2"
+ },
+ "balance.xlsx": {
+ "id": "5bcdb1dd-4aed-4048-bf1a-738f389ef31a"
}
},
"user-6": {
- "file.txt": {
- "id": "7b486508-4e09-4dcb-b8f0-14020ab44c15"
- },
"balance.xlsx": {
- "id": "943b276b-a073-4141-9e5e-cad489d1f65b"
+ "id": "bc5e34c3-bb57-4343-8709-a9fc9be0ef15"
}
}
},
diff --git a/datasafe-long-run-tests/pom.xml b/datasafe-long-run-tests/pom.xml
index 3a54c34ed..1fe23d8d4 100644
--- a/datasafe-long-run-tests/pom.xml
+++ b/datasafe-long-run-tests/pom.xml
@@ -5,7 +5,7 @@
datasafe
de.adorsys
- 0.6.2
+ 0.7.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 de8f82093..62fcb560b 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.6.2
+ 0.7.0
datasafe-metainfo-version-api
@@ -25,4 +25,22 @@
${project.version}
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+
+
+ org.projectlombok
+ lombok
+ ${lombok.version}
+
+
+
+
+
+
diff --git a/datasafe-metainfo/datasafe-metainfo-version-api/src/main/java/de/adorsys/datasafe/metainfo/version/api/actions/VersionedList.java b/datasafe-metainfo/datasafe-metainfo-version-api/src/main/java/de/adorsys/datasafe/metainfo/version/api/actions/VersionedList.java
index 59c00a23c..cf0d9d6b7 100644
--- a/datasafe-metainfo/datasafe-metainfo-version-api/src/main/java/de/adorsys/datasafe/metainfo/version/api/actions/VersionedList.java
+++ b/datasafe-metainfo/datasafe-metainfo-version-api/src/main/java/de/adorsys/datasafe/metainfo/version/api/actions/VersionedList.java
@@ -2,6 +2,7 @@
import de.adorsys.datasafe.encrypiton.api.types.UserIDAuth;
import de.adorsys.datasafe.metainfo.version.api.version.WithVersionStrategy;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingStream;
import de.adorsys.datasafe.privatestore.api.actions.ListPrivate;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.actions.VersionStrategy;
@@ -19,12 +20,12 @@ public interface VersionedList extends ListPrivate, W
* Lists latest resource locations, their date will correspond to latest one, not actual write date
*/
@Override
- Stream> list(ListRequest request);
+ PasswordClearingStream> list(ListRequest request);
/**
* Lists versions of resource and provides latest resource link location.
*/
- Stream, ResolvedResource, Version>> listVersioned(
+ PasswordClearingStream, ResolvedResource, Version>> listVersioned(
ListRequest request
);
}
diff --git a/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml b/datasafe-metainfo/datasafe-metainfo-version-impl/pom.xml
index 8962f7572..b0785ebe3 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.6.2
+ 0.7.0
datasafe-metainfo-version-impl
diff --git a/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/LatestPrivateSpaceImpl.java b/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/LatestPrivateSpaceImpl.java
index 2f93fa222..dec1aa0a7 100644
--- a/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/LatestPrivateSpaceImpl.java
+++ b/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/LatestPrivateSpaceImpl.java
@@ -7,6 +7,9 @@
import de.adorsys.datasafe.metainfo.version.api.actions.VersionedWrite;
import de.adorsys.datasafe.metainfo.version.api.version.VersionedPrivateSpaceService;
import de.adorsys.datasafe.metainfo.version.impl.version.types.LatestDFSVersion;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingInputStream;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingOutputStream;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingStream;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.actions.ReadRequest;
import de.adorsys.datasafe.types.api.actions.RemoveRequest;
@@ -49,7 +52,7 @@ public LatestPrivateSpaceImpl(V strategy, VersionedList listService, Versione
// Delegate didn't work
@Override
- public Stream> list(ListRequest request) {
+ public PasswordClearingStream> list(ListRequest request) {
return listService.list(request);
}
@@ -62,7 +65,7 @@ public Stream, ResolvedResource, Ver
// Delegate didn't work
@Override
- public InputStream read(ReadRequest request) {
+ public PasswordClearingInputStream read(ReadRequest request) {
return readService.read(request);
}
@@ -70,11 +73,17 @@ public InputStream read(ReadRequest request) {
@Override
public void remove(RemoveRequest request) {
removeService.remove(request);
+ // password clearance is done in removeService
+ }
+
+ @Override
+ public void makeSurePasswordClearanceIsDone() {
+
}
// Delegate didn't work
@Override
- public OutputStream write(WriteRequest request) {
+ public PasswordClearingOutputStream write(WriteRequest request) {
return writeService.write(request);
}
}
diff --git a/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/actions/LatestListImpl.java b/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/actions/LatestListImpl.java
index 2a73b2fbf..f093f6a3e 100644
--- a/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/actions/LatestListImpl.java
+++ b/datasafe-metainfo/datasafe-metainfo-version-impl/src/main/java/de/adorsys/datasafe/metainfo/version/impl/version/latest/actions/LatestListImpl.java
@@ -6,6 +6,8 @@
import de.adorsys.datasafe.metainfo.version.impl.version.VersionEncoderDecoder;
import de.adorsys.datasafe.metainfo.version.impl.version.types.DFSVersion;
import de.adorsys.datasafe.metainfo.version.impl.version.types.LatestDFSVersion;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingInputStream;
+import de.adorsys.datasafe.privatestore.api.PasswordClearingStream;
import de.adorsys.datasafe.privatestore.api.actions.ListPrivate;
import de.adorsys.datasafe.types.api.actions.ListRequest;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
@@ -45,15 +47,15 @@ public LatestListImpl(V strategy, VersionEncoderDecoder encoder, ListPrivate lis
}
@Override
- public Stream> list(ListRequest request) {
+ public PasswordClearingStream> list(ListRequest request) {
// Returns absolute location of versioned resource tagged with date based on link
- return listVersioned(request)
+ return new PasswordClearingStream(listVersioned(request)
.map(Versioned::stripVersion)
- .map(AbsoluteLocation::new);
+ .map(AbsoluteLocation::new), request.getOwner().getReadKeyPassword());
}
@Override
- public Stream, ResolvedResource, Version>> listVersioned(
+ public PasswordClearingStream, ResolvedResource, Version>> listVersioned(
ListRequest request) {
ListRequest forLatestSnapshotDir = request.toBuilder().location(
@@ -67,10 +69,10 @@ public Stream, ResolvedResource, Ver
request.getStorageIdentifier()
);
- return listPrivate
+ return new PasswordClearingStream<>(listPrivate
.list(forLatestSnapshotDir)
.map(it -> parseVersion(it, linkDecryptor))
- .filter(Objects::nonNull);
+ .filter(Objects::nonNull), request.getOwner().getReadKeyPassword());
}
private Versioned